* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    width: 100%;
    text-align: center;
}

h1 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 10px;
}

p {
    color: #666;
    margin-bottom: 30px;
}

.map-section {
    margin-bottom: 40px;
}

#map {
    height: 500px; /* Adjust as needed */
    width: 100%;
}


@media (max-width: 480px) {
    .container {
        padding: 20px;
    }

    h1 {
        font-size: 2em;
    }

    #map {
        height: 300px;
    }
}

.download-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
    margin-top: 10px;
}
.download-box {
    width: 120px;
    padding: 15px;
    background: linear-gradient(135deg, #f4f4f4, #ddd);
    border: 2px solid #989090;
    border-radius: 8px;
    text-align: center;
    font-size: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.download-box:hover {
    transform: scale(1.1);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #ffffff, #f4f4f4);
}
.download-box a {
    display: inline-block;
    margin-top: 10px;
    padding: 8px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}
.download-box a:hover {
    background-color: #2873c3;
}

.footer {
    background: #2c3e50;
    color: rgb(190, 25, 25);
    padding: 15px;
    margin-top: 60px;
    font-size: 14px;
    position: relative;
    width: 100%;
}
.footer a {
    color: #1abc9c;
    text-decoration: none;
}

@keyframes square-in-center {
    from {
      clip-path: inset(100% 100% 100% 100%);
    }
    to {
      clip-path: inset(0 0 0 0);
    }
  }
  
  .custom-table {
    border-collapse: collapse;
    margin: 1rem auto;
    min-width: 200px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.15);
  }

  .custom-table th,
  .custom-table td {
    padding: 12px 16px;
    text-align: left;
  }

  .custom-table thead th {
    background-color: #0D6EFD; /* A soft blue */
    color: white;
    font-weight: bold;
  }

  .custom-table tbody tr:nth-child(even) {
    background-color: #f5f5f5; /* Subtle striped rows */
  }

  .custom-table tbody tr:hover {
    background-color: #d9ecff; /* Light hover color */
  }