/* Base styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8d7da;
}

/* Container */
.app-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px;
}

/* Header section */
.header {
    background-color: #721c24;
    border-radius: 8px 8px 0 0;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo img {
    height: 60px;
    width: auto;
}

.title {
    text-align: center;
    color: white;
    flex: 1;
}

.title h1 {
    margin: 0;
    font-size: 24px;
}

.title p {
    margin: 5px 0 0;
    font-size: 12px;
}

/* Main content section */
.main-content {
    background-color: #f8d7da;
    padding: 10px;
    border-radius: 0 0 8px 8px;
}

/* Address columns - responsive layout */
.address-columns {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-direction: row; /* Default is row for desktop */
}

.address-column {
    flex: 1;
    background-color: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Filters section */
.filter-section {
    background-color: white;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.filter-title {
    font-weight: bold;
    margin-bottom: 10px;
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* Dropdowns */
.dropdown {
    margin-bottom: 10px;
}

/* Checkbox containers */
.checkbox-container {
    margin-bottom: 5px;
}

/* Station selector */
.station-selector {
    background-color: white;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Info section */
.station-info {
    background-color: white;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Map container */
.map-container {
    background-color: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.map-title {
    text-align: center;
    margin-top: 0;
}

/* Results boxes */
.result-box {
    padding: 10px;
    background-color: #f8f9fa;
    border-radius: 5px;
    margin-top: 10px;
}

/* Input styles */
.input-box {
    width: 100%;
    padding: 8px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    box-sizing: border-box;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
    }
    
    .logo {
        margin-bottom: 10px;
    }
    
    .address-columns {
        flex-direction: column; /* Stack on mobile */
    }
    
    .filter-options {
        flex-direction: column;
    }
    
    .title h1 {
        font-size: 20px;
    }
    
    .title p {
        font-size: 10px;
    }
    
    /* Ensure the map is responsive */
    .dash-graph {
        width: 100% !important;
    }

    /* Make the map container responsive */
    .map-container {
        width: 100%;
        box-sizing: border-box;
    }


}
