.filters-card {
    background: #fff;
    border-radius: 36px;
    padding: 38px;
    border: 1px solid rgba(15, 23, 42, .05);
    box-shadow: 0 24px 70px rgba(15, 23, 42, .08);
}

.filters-header {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
}

.filters-header h3 {
    margin: 0;
    font-size: 32px;
    font-weight: 900;
    color: #111827;
    letter-spacing: -.8px;
}

.filters-header p {
    margin: 6px 0 0;
    color: #6b7280;
    font-size: 16px;
}

.clear-filter-btn {
    height: 60px;
    padding: 0 22px;
    border-radius: 20px !important;
    border: 1px solid #e5e7eb !important;
    background: #fff !important;
    color: #6b7280 !important;
    font-size: 15px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.clear-filter-btn:hover {
    background: rgba(239, 68, 68, .08) !important;
    color: #dc2626 !important;
}

.filter-label {
    display: block;
    margin-bottom: 12px;
    color: #374151;
    font-size: 15px;
    font-weight: 900;
}

.filter-field {
    position: relative;
}

.filter-field > i {
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    color: #3473BA;
    font-size: 22px;
    z-index: 3;
}

.premium-input {
    height: 74px;
    border-radius: 24px !important;
    border: 1px solid #e5e7eb !important;
    background: #fff !important;
    padding-left: 66px !important;
    padding-right: 22px !important;
    color: #111827;
    font-size: 18px;
    font-weight: 800;
    box-shadow: none !important;
}

.premium-input::placeholder {
    color: #6b7280;
    opacity: .9;
}

.premium-input:focus {
    border-color: rgba(52, 115, 186, .38) !important;
    box-shadow: 0 0 0 5px rgba(52, 115, 186, .10) !important;
}

.search-task-btn {
    width: 100%;
    height: 74px;
    border: 0 !important;
    border-radius: 24px !important;
    background: linear-gradient(135deg, #3473BA, #4E80BD) !important;
    color: #fff !important;
    font-size: 20px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    box-shadow: 0 18px 42px rgba(52, 115, 186, .24);
}

.search-task-btn:hover {
    transform: translateY(-2px);
}
.filter-header h5 {
    margin: 0;
    font-size: 24px;
    font-weight: 900;
    color: #111827;
}

.filter-header small {
    color: #6b7280;
    font-size: 14px;
}

@media (max-width: 768px) {
    .filters-card {
        padding: 24px;
        border-radius: 28px;
    }

    .filters-header {
        flex-direction: column;
    }

    .filters-header h3 {
        font-size: 26px;
    }

    .clear-filter-btn,
    .search-task-btn,
    .premium-input {
        height: 58px;
        border-radius: 18px !important;
        font-size: 15px;
    }

    .filter-field > i {
        font-size: 18px;
        left: 18px;
    }

    .premium-input {
        padding-left: 54px !important;
    }
}