* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.app-header {
    background: white;
    padding: 4px 20px;
    border-bottom: 1px solid #ddd;
    flex-shrink: 0;
}

.header-logo {
    height: 18px;
    display: block;
}

.main-content {
    flex: 1;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    min-height: 0;
}
.map-container,
.details-panel {
    height: 100%;
}


.app-footer {
    background: white;
    padding: 4px 20px;
    border-top: 1px solid #ddd;
    display: flex;
    gap: 20px;
    justify-content: flex-end;
    align-items: center;
    flex-shrink: 0;
}

.app-footer a {
    color: #666;
    text-decoration: none;
    font-size: 11px;
    transition: color 0.2s;
}

.app-footer a:hover {
    color: #3498db;
}

.map-container {
    flex: 1 1 50%;
    position: relative;
    padding: 10px 10px 10px 10px;
    background: #f8f9fa;
    box-sizing: border-box;
}

#map {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    overflow: hidden;
}



.map-search-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    gap: 3px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.3);
    padding: 4px;
}

.details-panel {
    flex: 1 1 50%;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    padding: 10px 10px 10px 10px;
    box-sizing: border-box;
    min-height: 0;
}

.details-header {
    background: white;
    padding: 20px;
    margin: 0;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    flex-shrink: 0;
}

.details-header h1 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.details-header p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.details-content {
    flex: 1;
    padding: 0;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 0;
}

.station-details {
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.station-details h2 {
    font-size: 16px;
    margin: 0 0 12px 0;
    color: #333;
    border-bottom: 2px solid #3498db;
    padding-bottom: 8px;
}

.detail-row {
    margin: 8px 0;
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 10px;
    align-items: baseline;
}

.detail-row .label {
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    font-weight: 600;
}

.detail-row .value {
    font-size: 13px;
    color: #333;
}

.placeholder-message {
    text-align: center;
    color: #000;
    padding: 40px 20px;
    font-size: 20px;
    font-weight: 500;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.placeholder-message p {
    margin: 0;
}

.placeholder-message .icon {
    font-size: 48px;
    margin-bottom: 15px;
    opacity: 0.3;
}

#station-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    min-height: 0;
}

.chart-container {
    background: white;
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    flex: 1 1 0;
    min-height: 260px;
    display: flex;
    flex-direction: column;
}

.chart-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    flex-shrink: 0;
    min-height: 20px;
}

.chart-container h3 {
    font-size: 13px;
    margin: 0;
    color: #333;
    font-weight: 600;
    line-height: 1.4;
    word-break: break-word;
}

.legend-container {
    display: flex;
    gap: 15px;
    font-size: 11px;
}

.chart-subtitle {
    font-size: 11px;
    margin: 0 0 8px 0;
    color: #666;
    flex-shrink: 0;
}

.chart-subtitle strong {
    color: #333;
    font-weight: 600;
}

.chart-wrapper {
    position: relative;
    flex: 1;
    min-height: 180px;
}

.chart-loading {
    text-align: center;
    padding: 40px;
    color: #999;
    font-size: 13px;
}

.time-period-selector {
    background: white;
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    flex-shrink: 0;
}

.time-period-selector h3 {
    font-size: 16px;
    margin: 0 0 10px 0;
    color: #333;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.selector-row {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.selector-group {
    flex: 1;
    min-width: 100px;
}

.selector-group label {
    display: block;
    font-size: 10px;
    color: #888;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 4px;
}

.selector-group select,
.selector-group input[type="date"] {
    width: 100%;
    padding: 6px 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 12px;
    color: #333;
    background: white;
    cursor: pointer;
    transition: border-color 0.2s;
}

.selector-group select:hover,
.selector-group input[type="date"]:hover {
    border-color: #3498db;
}

.selector-group select:focus,
.selector-group input[type="date"]:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.1);
}

.selector-group input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
}

.vehicle-type-buttons {
    margin-top: 10px;
}

.vehicle-type-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.vehicle-type-section {
    flex: 1;
}

.location-search-input {
    flex: 1;
    padding: 6px 10px;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    color: #333;
    background: white;
    transition: all 0.2s;
    font-family: inherit;
    min-width: 200px;
}

.location-search-input:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.3);
}

.location-search-input::placeholder {
    color: #999;
    font-size: 12px;
}

.location-search-btn {
    background: white;
    border: none;
    cursor: pointer;
    padding: 6px 8px;
    border-radius: 6px;
    color: #2980b9;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
}

.location-search-btn:hover {
    background: #e8f4f8;
    color: #1a5a8a;
}

.location-search-btn:active {
    transform: scale(0.98);
}

.location-search-btn svg {
    width: 15px;
    height: 15px;
}

/* Google Maps Autocomplete styling */
.pac-container {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border: 1px solid #ddd;
    margin-top: 4px;
    z-index: 10000;
}

.pac-item {
    padding: 8px 12px;
    font-size: 12px;
    border-top: 1px solid #f0f0f0;
    cursor: pointer;
}

.pac-item:first-child {
    border-top: none;
}

.pac-item:hover {
    background-color: #f0f8ff;
}

.pac-item-selected {
    background-color: #e8f4ff;
}

.pac-icon {
    margin-right: 8px;
}

.pac-item-query {
    font-size: 12px;
    color: #333;
}

.pac-matched {
    font-weight: 600;
}

.export-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.vehicle-type-buttons h4 {
    font-size: 10px;
    color: #888;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.export-btn {
    background: white;
    border: 2px solid #ddd;
    cursor: pointer;
    padding: 6px 14px;
    border-radius: 6px;
    color: #2980b9;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    height: 30px;
}

.export-btn:hover {
    background: #f0f8ff;
    border-color: #3498db;
    color: #1a5a8a;
}

.export-btn:active {
    transform: scale(0.98);
}

.export-btn:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.export-btn svg {
    width: 16px;
    height: 16px;
}

.button-group {
    display: flex;
    gap: 0;
    flex-wrap: nowrap;
    border: 2px solid #ddd;
    border-radius: 6px;
    overflow: visible;
    width: fit-content;
}

.vehicle-btn {
    padding: 6px 14px;
    border: none;
    border-right: 1px solid #ddd;
    border-radius: 0;
    font-size: 11px;
    color: #333;
    background: white;
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 500;
    text-align: center;
}

.vehicle-btn:last-child {
    border-right: none;
}

.vehicle-btn:hover {
    background: #f0f8ff;
}

.vehicle-btn.active {
    background: #2980b9;
    color: white;
    font-weight: 700;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.vehicle-btn:active {
    transform: scale(0.98);
}

.vehicle-btn:disabled {
    background: #f5f5f5;
    color: #999;
    cursor: not-allowed;
    opacity: 0.6;
}

.vehicle-btn:disabled:hover {
    background: #f5f5f5;
}

/* Custom tooltip for disabled buttons */
.vehicle-btn.no-data {
    position: relative;
}

.vehicle-btn.no-data::after {
    content: attr(data-tooltip);
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: white;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.15s ease-in-out;
    pointer-events: none;
    margin-top: 8px;
    z-index: 9999;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.vehicle-btn.no-data::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-bottom-color: #333;
    margin-top: -4px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.15s ease-in-out;
    pointer-events: none;
    z-index: 9999;
}

.vehicle-btn.no-data:hover::after,
.vehicle-btn.no-data:hover::before {
    opacity: 1;
    visibility: visible;
}

.loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 30px 50px;
    border-radius: 8px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
    z-index: 2000;
    text-align: center;
}

.loading.hidden {
    display: none;
}

.spinner {
    border: 3px solid #f3f3f3;
    border-top: 3px solid #3498db;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.gm-style-iw {
    max-width: 300px !important;
}

.info-window {
    padding: 10px;
}

.info-window h3 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 16px;
}

.info-window .detail {
    margin: 5px 0;
    font-size: 13px;
    color: #666;
}

.info-window .detail strong {
    color: #333;
    display: inline-block;
    min-width: 100px;
}

.legend {
    background: white;
    padding: 12px 15px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.legend h4 {
    margin: 0 0 8px 0;
    font-size: 13px;
    color: #333;
    font-weight: 600;
}

.legend-items {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #666;
}

.legend-marker {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 6px;
    border: 2px solid white;
    box-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.marker-autobahn { background: #e74c3c; }
.marker-bundesstrasse { background: #f39c12; }
.marker-other { background: #3498db; }

/* ============================================
   RESPONSIVE DESIGN - MOBILE & TABLET
   ============================================ */

/* Tablet Landscape and smaller (1024px and below) */
@media screen and (max-width: 1024px) {
    .main-content {
        flex-direction: column;
    }

    .map-container,
    .details-panel {
        width: 100%;
        height: 50vh;
        border-left: none;
    }

    .details-panel {
        border-top: 1px solid #ddd;
    }

    .map-search-overlay {
        top: 20px;
        left: 20px;
        right: 20px;
        max-width: none;
    }

    .location-search-input {
        min-width: 150px;
    }

    .selector-row {
        gap: 8px;
    }

    .selector-group {
        min-width: 90px;
    }

    .vehicle-type-row {
        gap: 15px;
    }

    .chart-wrapper {
        min-height: 180px;
    }
}

/* Tablet Portrait (768px and below) */
@media screen and (max-width: 768px) {
    .app-header {
        padding: 8px 15px;
    }

    .header-logo {
        height: 20px;
    }

    .app-footer {
        padding: 10px 15px;
        gap: 15px;
        flex-wrap: wrap;
    }

    .app-footer a {
        font-size: 10px;
    }

    .map-container,
    .details-panel {
        height: 45vh;
    }

    .details-content {
        padding: 12px;
        gap: 12px;
    }

    .time-period-selector {
        padding: 12px;
    }

    .time-period-selector h3 {
        font-size: 13px;
        margin-bottom: 10px;
        line-height: 1.4;
        word-break: break-word;
        white-space: normal;
        overflow-wrap: break-word;
    }

    .selector-row {
        gap: 6px;
    }

    .selector-group {
        min-width: 80px;
        flex: 1 1 calc(50% - 3px);
    }

    .selector-group label {
        font-size: 9px;
        margin-bottom: 3px;
    }

    .selector-group select,
    .selector-group input[type="date"] {
        padding: 8px 6px;
        font-size: 11px;
        min-height: 44px; /* Touch-friendly */
    }

    .vehicle-type-row {
        flex-direction: column;
        gap: 12px;
    }

    .vehicle-type-section,
    .export-section {
        width: 100%;
    }

    .vehicle-type-buttons h4 {
        font-size: 9px;
        margin-bottom: 6px;
    }

    .button-group {
        width: 100%;
    }

    .vehicle-btn {
        flex: 1;
        padding: 10px 8px;
        font-size: 10px;
        min-height: 44px; /* Touch-friendly */
    }

    .export-btn {
        width: 100%;
        padding: 10px 14px;
        min-height: 44px; /* Touch-friendly */
        font-size: 13px;
    }

    .chart-container {
        padding: 12px;
        margin-bottom: 12px;
        min-height: 220px;
        flex: 0 0 auto;
    }

    .chart-container h3 {
        font-size: 12px;
        line-height: 1.4;
        word-break: break-word;
        white-space: normal;
        overflow-wrap: break-word;
    }

    .chart-title-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        margin-bottom: 10px;
    }

    .legend-container {
        gap: 10px;
        font-size: 10px;
    }

    .chart-wrapper {
        min-height: 180px;
        flex: 1;
    }

    .station-details {
        padding: 12px;
    }

    .station-details h2 {
        font-size: 14px;
        margin-bottom: 10px;
        padding-bottom: 6px;
    }

    .detail-row {
        grid-template-columns: 100px 1fr;
        gap: 8px;
        margin: 6px 0;
    }

    .detail-row .label {
        font-size: 10px;
    }

    .detail-row .value {
        font-size: 12px;
    }

    .placeholder-message {
        font-size: 18px;
        padding: 30px 15px;
    }

    .placeholder-message .icon {
        font-size: 40px;
        margin-bottom: 12px;
    }

    .loading {
        padding: 25px 40px;
    }

    .spinner {
        width: 35px;
        height: 35px;
    }
}

/* Mobile Landscape (640px and below) */
@media screen and (max-width: 640px) {
    .map-container {
        height: 40vh;
    }

    .details-panel {
        height: 60vh;
    }

    .map-search-overlay {
        padding: 3px;
        gap: 2px;
    }

    .location-search-input {
        padding: 8px;
        font-size: 12px;
        min-width: 120px;
        min-height: 44px; /* Touch-friendly */
    }

    .location-search-btn {
        padding: 8px;
        min-width: 44px; /* Touch-friendly */
        min-height: 44px;
    }

    .location-search-btn svg {
        width: 16px;
        height: 16px;
    }

    .selector-group {
        flex: 1 1 100%;
        min-width: 100%;
    }

    .chart-container {
        min-height: 180px;
        flex: 0 0 auto;
    }

    .chart-wrapper {
        min-height: 140px;
        flex: 1;
    }
}

/* Mobile Portrait (480px and below) */
@media screen and (max-width: 480px) {
    body {
        font-size: 14px;
    }

    .app-header {
        padding: 6px 10px;
    }

    .header-logo {
        height: 18px;
    }

    .app-footer {
        padding: 8px 10px;
        gap: 10px;
    }

    .app-footer a {
        font-size: 9px;
    }

    .map-container {
        height: 35vh;
    }

    .details-panel {
        height: 65vh;
    }

    .details-content {
        padding: 8px;
        gap: 8px;
    }

    .time-period-selector {
        padding: 10px;
    }

    .time-period-selector h3 {
        font-size: 11px;
        margin-bottom: 10px;
        line-height: 1.4;
        word-break: break-word;
        white-space: normal;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .selector-row {
        gap: 6px;
    }

    .selector-group {
        flex: 1 1 100%;
        min-width: 100%;
    }

    .selector-group label {
        font-size: 9px;
        margin-bottom: 2px;
    }

    .selector-group select,
    .selector-group input[type="date"] {
        padding: 10px 8px;
        font-size: 12px;
        min-height: 44px; /* Touch-friendly */
    }

    .vehicle-type-buttons {
        margin-top: 8px;
    }

    .vehicle-type-row {
        gap: 10px;
    }

    .vehicle-type-buttons h4 {
        font-size: 9px;
        margin-bottom: 5px;
    }

    .vehicle-btn {
        padding: 12px 6px;
        font-size: 10px;
        min-height: 44px; /* Touch-friendly */
    }

    .export-btn {
        padding: 12px;
        min-height: 44px; /* Touch-friendly */
        font-size: 12px;
    }

    .export-btn svg {
        width: 14px;
        height: 14px;
    }

    .chart-container {
        padding: 10px;
        margin-bottom: 10px;
        min-height: 200px;
        flex: 0 0 auto;
    }

    .chart-container h3 {
        font-size: 11px;
        line-height: 1.4;
        word-break: break-word;
        white-space: normal;
        overflow-wrap: break-word;
    }

    .chart-title-row {
        margin-bottom: 8px;
        gap: 6px;
        flex-direction: column;
        align-items: flex-start;
    }

    .legend-container {
        gap: 8px;
        font-size: 9px;
        flex-wrap: wrap;
    }

    .chart-subtitle {
        font-size: 10px;
        margin-bottom: 8px;
    }

    .chart-wrapper {
        min-height: 150px;
        flex: 1;
    }

    .station-details {
        padding: 10px;
    }

    .station-details h2 {
        font-size: 13px;
        margin-bottom: 8px;
        padding-bottom: 5px;
    }

    .detail-row {
        grid-template-columns: 90px 1fr;
        gap: 6px;
        margin: 5px 0;
    }

    .detail-row .label {
        font-size: 9px;
    }

    .detail-row .value {
        font-size: 11px;
    }

    .placeholder-message {
        font-size: 16px;
        padding: 20px 10px;
    }

    .placeholder-message .icon {
        font-size: 36px;
        margin-bottom: 10px;
    }

    .loading {
        padding: 20px 30px;
        font-size: 12px;
    }

    .spinner {
        width: 30px;
        height: 30px;
        border-width: 2px;
        margin-bottom: 10px;
    }

    .info-window {
        padding: 8px;
    }

    .info-window h3 {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .info-window .detail {
        font-size: 11px;
        margin: 4px 0;
    }

    .info-window .detail strong {
        min-width: 80px;
        font-size: 11px;
    }

    .legend {
        padding: 10px 12px;
        margin-bottom: 15px;
    }

    .legend h4 {
        font-size: 12px;
        margin-bottom: 6px;
    }

    .legend-items {
        gap: 10px;
    }

    .legend-item {
        font-size: 11px;
    }

    .legend-marker {
        width: 10px;
        height: 10px;
        margin-right: 5px;
    }

    /* Google Maps Autocomplete on mobile */
    .pac-container {
        font-size: 12px;
    }

    .pac-item {
        padding: 10px;
        font-size: 11px;
        min-height: 44px; /* Touch-friendly */
    }

    .pac-item-query {
        font-size: 11px;
    }
}

/* Extra Small Mobile (360px and below) */
@media screen and (max-width: 360px) {
    .app-header {
        padding: 5px 8px;
    }

    .header-logo {
        height: 16px;
    }

    .app-footer {
        padding: 6px 8px;
        gap: 8px;
    }

    .app-footer a {
        font-size: 8px;
    }

    .time-period-selector {
        padding: 8px;
    }

    .time-period-selector h3 {
        font-size: 10px;
        line-height: 1.5;
        margin-bottom: 8px;
    }

    .selector-group select,
    .selector-group input[type="date"] {
        font-size: 11px;
        padding: 10px 6px;
    }

    .vehicle-btn {
        padding: 12px 4px;
        font-size: 9px;
    }

    .chart-container {
        padding: 8px;
        min-height: 180px;
        flex: 0 0 auto;
    }

    .chart-container h3 {
        font-size: 10px;
        line-height: 1.5;
    }

    .legend-container {
        font-size: 8px;
    }

    .placeholder-message {
        font-size: 14px;
    }

    .chart-wrapper {
        min-height: 130px;
        flex: 1;
    }
}

/* Landscape orientation adjustments for mobile */
@media screen and (max-height: 500px) and (orientation: landscape) {
    .map-container {
        height: 100vh;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1;
    }

    .details-panel {
        height: 100vh;
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        z-index: 2;
        transition: right 0.3s ease;
        box-shadow: -2px 0 8px rgba(0,0,0,0.3);
    }

    .details-panel.active {
        right: 0;
    }

    .app-header,
    .app-footer {
        position: relative;
        z-index: 3;
    }
}

/* High DPI / Retina displays - ensure crisp rendering */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .header-logo,
    .location-search-btn svg,
    .export-btn svg {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Increase touch targets for better usability */
    .vehicle-btn,
    .export-btn,
    .location-search-btn,
    .selector-group select,
    .selector-group input[type="date"] {
        min-height: 44px;
        min-width: 44px;
    }

    /* Remove hover effects on touch devices */
    .vehicle-btn:hover,
    .export-btn:hover,
    .location-search-btn:hover,
    .selector-group select:hover,
    .selector-group input[type="date"]:hover,
    .app-footer a:hover {
        background: inherit;
        color: inherit;
        border-color: inherit;
    }

    /* Add active/pressed states for touch feedback */
    .vehicle-btn:active,
    .export-btn:active,
    .location-search-btn:active {
        opacity: 0.7;
        transform: scale(0.98);
    }
}

