@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.header-gradient {
    background: linear-gradient(135deg, #FF6900 0%, #E55E00 100%);
}

.card-shadow {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.table-scroll {
    -webkit-overflow-scrolling: touch;
}

.table-scroll::-webkit-scrollbar {
    height: 6px;
}

.table-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.table-scroll::-webkit-scrollbar-thumb {
    background: #FF6900;
    border-radius: 3px;
}

/* Touch-friendly */
.touch-target {
    height: 40px;
}

/* Custom select styling */
select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Sidebar styling */
.sidebar-link {
    transition: all 0.15s ease;
}

.sidebar-link:hover {
    background-color: rgba(255, 105, 0, 0.1);
    color: #FF6900;
}

.sidebar-link.active {
    background-color: rgba(255, 105, 0, 0.15);
    color: #FF6900;
    font-weight: 500;
}

/* Tab styling */
.tab-active {
    color: #1D1D1D;
    border-bottom: 2px solid #1D1D1D;
    background-color: transparent;
}

.tab-inactive {
    color: #6B6B6B;
    border-bottom: 2px solid transparent;
    background-color: transparent;
}

.tab-inactive:hover {
    color: #1D1D1D;
}

/* Export button */
.btn-export {
    background-color: #000000;
    color: #ffffff;
}

.btn-export:hover {
    opacity: 0.6;
}

/* Language dropdown */
.lang-dropdown {
    display: none;
}

.lang-dropdown.show {
    display: block;
}

/* Mobile overlay for Places */
.places-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 100;
}

.places-overlay.show {
    display: block;
}

.places-panel {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 80%;
    max-width: 320px;
    background-color: white;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.15);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.places-overlay.show .places-panel {
    transform: translateX(0);
}

/* Mobile filter accordion */
.filter-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.filter-accordion-content.show {
    max-height: 500px;
}
