/* Futuristic Design for Filter Controls */
.futuristic-card {
    background-color: #0a0a0a;
    border: 1px solid rgba(0, 120, 255, 0.3);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 100, 255, 0.1);
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.futuristic-card:hover {
    box-shadow: 0 8px 20px rgba(0, 100, 255, 0.2);
    transform: translateY(-2px);
}

.futuristic-header {
    background-color: #0d0d0d;
    border-bottom: 1px solid rgba(0, 120, 255, 0.2);
    color: #ffffff;
    padding: 15px 20px;
}

.filter-title {
    color: #00a8ff;
    font-size: 18px;
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.neo-button {
    background: linear-gradient(145deg, #101010, #1a1a1a);
    border: 1px solid rgba(0, 150, 255, 0.3);
    border-radius: 6px;
    color: #00a8ff;
    font-weight: 500;
    padding: 8px 16px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease-in-out;
}

.neo-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(0, 120, 255, 0.1);
    transition: width 0.3s ease-in-out;
    z-index: -1;
}

.neo-button:hover {
    border-color: rgba(0, 150, 255, 0.6);
    color: #00c2ff;
}

.neo-button:hover:before {
    width: 100%;
}

.neo-button i {
    margin-right: 6px;
}

.filter-body {
    background-color: #121212;
    padding: 20px;
}

/* Form Controls */
.form-label {
    color: #8e9aaf;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
}

.form-select,
.form-control {
    background-color: #1a1a1a;
    border: 1px solid rgba(0, 120, 255, 0.2);
    border-radius: 5px;
    color: #e0e0e0;
    padding: 8px 12px;
    transition: all 0.3s ease;
}

.form-select:focus,
.form-control:focus {
    background-color: #1e1e1e;
    border-color: rgba(0, 150, 255, 0.4);
    box-shadow: 0 0 0 0.25rem rgba(0, 100, 255, 0.1);
    color: #ffffff;
}

.form-select option {
    background-color: #1a1a1a;
    color: #e0e0e0;
}

.form-check-input {
    background-color: #1a1a1a;
    border: 1px solid rgba(0, 120, 255, 0.3);
}

.form-check-input:checked {
    background-color: #0078ff;
    border-color: #0078ff;
}

.form-check-label {
    color: #b0b0b0;
    font-size: 14px;
}

/* Filter Stats */
.filter-stats {
    background-color: rgba(0, 100, 255, 0.05);
    border-left: 3px solid #0078ff;
    border-radius: 4px;
    color: #9fb3c8;
    font-size: 14px;
    padding: 8px 12px;
}

.filter-stats strong {
    color: #c0c0c0;
}

/* Action Buttons */
.btn-primary {
    background: linear-gradient(145deg, #0064c2, #0078ff);
    border: none;
    font-weight: 500;
    padding: 8px 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease-in-out;
}

.btn-primary:hover {
    background: linear-gradient(145deg, #0078ff, #0064c2);
    box-shadow: 0 4px 8px rgba(0, 100, 255, 0.2);
    transform: translateY(-1px);
}

.btn-outline-secondary {
    background-color: transparent;
    border: 1px solid rgba(150, 150, 150, 0.3);
    color: #a0a0a0;
    font-weight: 500;
    padding: 8px 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease-in-out;
}

.btn-outline-secondary:hover {
    background-color: rgba(150, 150, 150, 0.1);
    border-color: rgba(150, 150, 150, 0.5);
    color: #c0c0c0;
}