body {
    font-family: Arial, sans-serif;
    font-size: 16px;
    max-width: 500px;
    margin: 10px;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 12px;
    }
    input, button {
    padding: 10px;
    margin-top: 10px;
    width: 100%;
    font-size: 16px;
    box-sizing: border-box;
    }
    #result {
    margin-top: 10px;
    font-weight: bold;
    display: none; /* Hidden by default, shown when DIGIPIN is generated */
    align-items: center;
    gap: 10px;
    }
    #reverseResult {
    margin-top: 20px;
    font-weight: bold;
    }
    #accuracy {
    margin-top: 10px;
    color: #555;
    }
    h2 {
    margin-top: 10px;
    margin-bottom: 10px;
    }
    .section {
    margin-top: 30px;
    }
    a {
    text-decoration: none;
    color: #007bff;
    }
    a:hover {
    text-decoration: none;
    }
    /* Map link display control */
    #mapPreview > div, #mapLinks > div {
        display: none; /* Hidden by default, takes no space */
    }
    #mapPreview.active > div, #mapLinks.active > div {
        display: block; /* Shown when active class is present */
    }

    #digipinText {
    display: inline-block;
    vertical-align: middle;
    font-size: 20px;
    color: #00796b;
    background-color: #e0f2f1;
    padding: 4px 8px;
    border-radius: 6px;
    font-family: monospace;
    }
    label {
    display: block;
    margin-top: 15px;
    }
    #lat, #lon, #revLat, #revLon {
    margin-top: 5px;
    margin-bottom: 10px;
    }
    .copy-icon, .tick-icon {
    cursor: pointer;
    font-size: 20px;
    margin: 10px 0; /* Adjusted margin for better spacing with text */
    user-select: none;
    vertical-align: middle; /* Align with text */
    display: inline-block; /* Ensure it respects margin and padding */
    }
    .tick-icon {
       display: none; /* Hidden by default */
       color: green; /* Make the tick green */
    }
    .error-message {
       color: red;
       font-size: 0.9em;
       margin-top: 5px;
    }