﻿
.filter-form {
    background: #1a1d29;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 1rem;
    margin-left: 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

    .filter-form label {
        font-weight: 600;
        font-size: 0.875rem;
        color: #e9ecef;
        margin-bottom: 4px;
    }

    .filter-form .form-control,
    .filter-form .form-select {
        border-radius: 999px;
        border: 1px solid rgba(255, 255, 255, 0.15);
        background-color: rgba(255, 255, 255, 0.08);
        color: #fff;
        padding: 8px 16px;
        transition: all 0.15s ease-in-out;
    }

        .filter-form .form-control::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .filter-form .form-control:focus,
        .filter-form .form-select:focus {
            border-color: #20c9c9;
            background-color: rgba(255, 255, 255, 0.12);
            color: #fff;
            box-shadow: 0 0 0 0.2rem rgba(32, 201, 201, 0.2);
        }

        .filter-form .form-select option {
            color: #212529;
            background-color: #fff;
        }

    .filter-form .btn-search {
        border-radius: 999px;
        background-color: #20c9c9;
        border-color: #20c9c9;
        color: #1a1d29;
        font-weight: 600;
        padding: 8px 24px;
        transition: all 0.15s ease-in-out;
    }

        .filter-form .btn-search:hover {
            background-color: #17a2a2;
            border-color: #17a2a2;
            color: #1a1d29;
        }

    .filter-form .btn-clear,
    .filter-form a.btn-clear {
        border-radius: 999px;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background-color: transparent;
        color: #e9ecef !important;
        font-weight: 500;
        padding: 8px 20px;
        text-decoration: none;
        transition: all 0.15s ease-in-out;
    }

        .filter-form .btn-clear:hover,
        .filter-form a.btn-clear:hover,
        .filter-form .btn-clear:visited,
        .filter-form a.btn-clear:visited {
            background-color: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.5);
            color: #fff !important;
            text-decoration: none;
        }