/* Filter Button Styles */

.wd-pf-btn button[type="submit"] {
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex: 1 0 0;
    width: 100%;
    border-radius: 48px !important;
    background: #0F3F36 !important;
    color: #D8FFB4 !important;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wd-pf-btn button[type="submit"]:hover {
    background: #0d352d;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(15, 63, 54, 0.2);
}

.wd-pf-btn button[type="submit"]:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(15, 63, 54, 0.2);
}
/*
.wd-pf-btn {
    margin-top: 16px;
}
*/