/* Updated styles.css */
body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background-color: #f5f5f5;
}

/* Header Styles */
header {
    background: #003366;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-title {
    color: white;
    font-size: 1.8rem;
}

.logo {
    height: 50px;
}

/* Container Styles */
.container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

/* Full Width Card */
.full-width-card {
    background: #f5f5f5;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.full-width-card h2 {
    color: #003366;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.full-width-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Existing Map Components */
#search-container {
    background: white;
    padding: 15px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

#search-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

#map {
    height: 60vh;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 20px;
    background: white;
}

.data-table-container {
    background: white;
    padding: 15px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Footer Styles */
footer {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('./assets/images/footer_banner.png') center/cover;
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
    position: relative;
}

.copyright {
    position: relative;
    z-index: 1;
}

/* Table Styles (existing) */
#data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

#data-table thead {
    background-color: #003366;
    color: white;
}

#data-table th,
#data-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.highlight {
    background-color: #e6f3ff !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
    }

    .header-title {
        font-size: 1.4rem;
    }

    #map {
        height: 50vh;
    }

    .container {
        padding: 0 10px;
    }
}