/* Real Estate Analytics Slovenia - Custom CSS */

/* Custom styles to complement Tailwind CSS */
.tab-btn {
    transition: all 0.2s ease;
}

.tab-btn:hover {
    transform: translateY(-1px);
}

.tab-btn.active {
    background-color: #2563eb !important;
    color: white !important;
}

.chart-container {
    position: relative;
    height: 400px;
    width: 100%;
}

/* Custom scrollbar for dropdowns */
.max-h-40::-webkit-scrollbar, .max-h-48::-webkit-scrollbar {
    width: 6px;
}

.max-h-40::-webkit-scrollbar-track, .max-h-48::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.max-h-40::-webkit-scrollbar-thumb, .max-h-48::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

/* Chip animations */
.chip { 
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}
.chip:hover { 
    transform: translateY(-1px); 
}

/* Loading state */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Filter section styling */
.filter-section {
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Responsive design */
@media (max-width: 768px) {
    .chart-container {
        height: 300px;
    }
}