* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding: 20px;
    background-color: #001e49;
    color: #FFFFFF;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

h1 {
    margin-bottom: 20px;
    text-align: center;
    color: #d72f87;
}

.upload-section {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    gap: 10px;
}

#map {
    height: 80vh;
    width: 100%;
    border: 1px solid #ccc;
}

button {
    padding: 8px 16px;
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
}

button:disabled {
    background-color: #888888;
}

button:hover {
    background-color: #45a049;
}

/* Add these to your existing styles.css */
.upload-section {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    gap: 10px;
    flex-wrap: wrap;
}

#reset-selection {
    background-color: #f44336;
}

#reset-selection:hover {
    background-color: #d32f2f;
}

.legend {
    padding: 10px;
    background: white;
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    line-height: 1.5;
    color: #000;
}

.legend-item {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.color-box {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    border: 1px solid #000;
}
