/* style.css */

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100%;
    overflow-x: hidden;
}

input {
    width: 100%;
    margin: 10px 0px 20px 0px;
}

select {
    width: 100%;
    margin: 10px 0px 20px 0px;
}

textarea {
    width: 100%;
    background-color: #f8f8f8;
}

ol {
    font-size: 18px; /* Adjust the font size to make numbers bigger */
    counter-reset: list-counter; /* Initialize the counter */
    padding-inline-start: 20px;
}

ul {
    font-size: 16px; /* Adjust the font size to make numbers bigger */
    padding-inline-start: 20px;
}

.region-item {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    font-size: 18px; /* Adjust the font size for list items */
}

.region-number {
    counter-increment: list-counter; /* Increment the counter */
    margin-right: 10px; /* Adjust the space between the number and the link */
}

.region-number::before {
    content: counter(list-counter) ". "; /* Display the counter value */
    font-size: 18px; /* Adjust the font size for the number */
    color: #000; /* Set the color for the number */
}

.region-count {
    margin-left: auto;
    font-size: 18px; /* Adjust the font size for the count */
}

.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;
}

.bold {
    font-weight: bold;
}

/* 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;
}

/* kuota button */

.quota-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 10px;
}

.quota-button {
    width: 30px;
    height: 30px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quota-button:hover {
    background-color: #0056b3;
}

.quota-display {
    font-size: 18px;
    color: #333;
}

.container-test {
    display: grid;
    align-items: left; 
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 5px;    
}

#add-job-form{
    margin: 30px 0px 30px 0px; 
}

/* 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 */
    }
}