/* styles.css */

body {
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(to right, #83a4d4, #b6fbff);
    color: #333;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 600px;
    margin: 50px auto;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.map-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
}

.map-wrapper img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  border-radius: inherit;
}

.map-wrapper canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

h1 {
    margin-bottom: 20px;
}

.data {
    font-size: 1.2em;
    margin: 10px 0;
}

.label {
    font-weight: bold;
    color: #0077b6;
}

.footer {
    margin-top: 30px;
    font-size: 0.9em;
    color: #666;
}

#uvChart {
    width: 100%;
    max-width: 600px;
    margin-top: 20px;
    margin-bottom: 40px;
}
