/* Co-Pilot Configuration Styles */

.profile-config-container {
    max-height: 600px;
    overflow-y: auto;
    padding-right: 10px;
    padding-left: 5px;
}

.slider-ticks {
    display: flex;
    justify-content: space-between;
    margin-top: 5px;
    padding: 0 2px;
}

.slider-tick {
    width: 2px;
    height: 8px;
    background-color: #dee2e6;
    border-radius: 1px;
}

.form-range::-webkit-slider-thumb {
    background-color: #1e3a5f;
}

.form-range::-moz-range-thumb {
    background-color: #1e3a5f;
}

.form-range::-ms-thumb {
    background-color: #1e3a5f;
}

.option-label {
    font-size: 0.7rem;
    color: #6c757d;
}

.slider-value-display {
    font-weight: 600;
    color: #1e3a5f;
}

.card {
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.form-check-input:checked {
    background-color: #1e3a5f;
    border-color: #1e3a5f;
}

.form-select {
    background-color: #f8f9fa;
    font-weight: 500;
}

.form-select:focus {
    border-color: #1e3a5f;
    box-shadow: 0 0 0 0.25rem rgba(30, 58, 95, 0.25);
}

/* Custom scrollbar for the configuration container */
.profile-config-container::-webkit-scrollbar {
    width: 6px;
}

.profile-config-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.profile-config-container::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 10px;
}

.profile-config-container::-webkit-scrollbar-thumb:hover {
    background: #153250;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .profile-config-container {
        max-height: 450px;
    }
    
    .card {
        padding: 0.75rem !important;
    }
    
    .form-label {
        font-size: 0.85rem;
    }
} 