body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    background-color: #f8f9fa;
}

.container-fluid {
    padding: 0;
}

/* Sidebar Enhancement */
.sidebar {
    background-color: #f8f9fa;
    padding: 25px;
    height: 100vh;
    position: sticky;
    top: 0;
    border-right: 1px solid #dee2e6;
    box-shadow: 2px 0 5px rgba(0,0,0,0.05);
}

.sidebar h3 {
    color: #2c3e50;
    margin-bottom: 25px;
    font-size: 1.4rem;
}

.main-content {
    padding: 30px;
}

/* Typography Improvements */
h1 {
    color: #2c3e50;
    margin-bottom: 40px;
    font-size: 3rem;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 20px;
    border-bottom: 3px solid #3498db;
}

h2 {
    color: #34495e;
    font-size: 2rem;
    margin-top: 45px;
    margin-bottom: 25px;
    font-weight: 600;
    padding-left: 15px;
    border-left: 5px solid #3498db;
}

h3 {
    color: #2980b9;
    font-size: 1.5rem;
    margin-top: 35px;
    margin-bottom: 20px;
    font-weight: 500;
    position: relative;
    padding-bottom: 10px;
}

h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #3498db;
}

p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.5rem;
    letter-spacing: 0.3px;
}

/* Prediction Box Enhancement */
.prediction {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #1e7e34;
    padding: 20px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.3rem;
    text-align: center;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
    margin: 30px 0;
}

/* Section Spacing */
.section-header {
    border-top: 2px solid #eee;
    padding-top: 40px;
    margin-top: 50px;
}

.content-section {
    margin-bottom: 40px;
}

#map {
    height: 400px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Table Improvements */
.table-container {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 30px;
}

.table {
    margin-top: 20px;
    margin-bottom: 30px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.table thead th {
    background-color: #f8f9fa;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    padding: 15px;
    border-bottom: 2px solid #dee2e6;
}

.table tbody td {
    padding: 12px 15px;
    vertical-align: middle;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0, 123, 255, 0.05);
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    font-weight: 500;
    color: #495057;
    margin-bottom: 8px;
}

.api-note {
    font-size: 0.8rem;
    color: #6c757d;
    font-style: italic;
    margin-top: 10px;
}

/* Daily Patterns Container Enhancement */
.daily-patterns-container {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin: 35px 0;
}

.daily-patterns-container h3 {
    margin-top: 0;
}

.daily-patterns-container img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

