/* style.css */

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100%;
    overflow-x: hidden;
}

ol {
    font-size: 18px; /* Adjust the font size to make numbers bigger */
}

.region-link {
    font-size: 24px;
    font-weight: bold;
    color: #007bff; /* Set your desired color */
    text-decoration: none; /* Optional: remove underline */
    /* Additional styles as needed */
}

/* CSS Class */
.text-align-center {
    text-align: center;
}

.font-size-24 {
    font-size: 24px;
}

.arial {
    font-family: Arial, Helvetica, sans-serif;
}

/* Tombol */
button {
    padding: 10px 20px;
    margin: 5px;
    border: none;
    background-color: #007bff;
    color: white;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
}
button:hover {
    background-color: #0056b3;
}
button:focus {
    outline: none;
}



.button-done {
    padding: 10px 40px;
    border-radius: 999px;
    background-color: #26eb36;
    color: white;
    border: solid 1px #26eb36;
}

.button-not-done {
    padding: 10px 40px;
    border-radius: 999px;
    background-color: white;
    color: black;
    border: solid 1px #26eb36;

}

.button-not-done:hover {
    background-color: #26eb36;
    color: white;
}

.button-done:hover {
    background-color: white;
    color: black;
}

/* Settings */
/* Remove button */
.remove-region {
    background-color: #e83131;
}

.remove-region:hover {
    background-color: #e71b1b;
}

/* Settings button */
.settings-button a, .home-button a {
    background-color: #a429d9;
    border-radius: 999px;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
}

.caption, .contact {
    display: none;
}

/* Flexbox container for copy buttons */
.copy-buttons-container {
    display: flex;
    width: 100%;
}

.copy-button {
    flex: 1;
    margin: 5px;
    text-align: center;
}

.done-button-div {
    display: flex;
    justify-content: center; /* Align center horizontally */
}

.done-button {
    flex: 1;
    max-width: 100%;
    text-align: center;
}

/* Responsive styles */
@media (max-width: 768px) {
    body {
        font-size: 14px;
        padding: 10px;
    }

    h1, h2 {
        font-size: 1.5em;
    }

    .copy-buttons-container {
        flex-direction: row;
    }

    .copy-button, .done-button {
        flex: 1;
        margin: 5px;
        text-align: center;
        padding: 10px;
        font-size: 14px;
    }

    button {
        width: 100%;
        padding: 10px;
        font-size: 14px;
    }

    .pagination {
        display: flex;
        justify-content: space-between;
        margin-top: 30px;
        margin-bottom: 20px; /* Add some space below the pagination buttons */
    }

    .pagination a, .home-button a, .back-to-regions a {
        flex: 1;
        text-align: center;
        padding: 10px;
        font-size: 14px;
        background-color: white;
        border: solid 1px #dfb220;
        border-radius: 999px;
        color: black;
        text-decoration: none;
        box-sizing: border-box;
    }

    .home-button, .settings-button {
        text-align: center; /* Center-align the Home button */
        margin-top: 30px; /* Add some space above the Home button */
    }

    .home-button a {
        border: none;
        background-color: #a429d9;
        color: white;
        padding: 10px 30px; /* Add some padding for better clickability */
    }
}