body {
    -webkit-touch-callout: none;
    /* Prevent selection on iOS */
    user-select: none;
    /* Disable selection globally */
    -webkit-user-select: none;
    /* Disable selection in Webkit browsers */
    -moz-user-select: none;
    /* Disable selection in Firefox */
    -ms-user-select: none;
    /* Disable selection in IE/Edge */
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    flex-direction: column;
}

/* body::after {
    content: 'CONFIDENTIAL';
    position: fixed;
    top: 50%;
    left: 50%;
    font-size: 100px;
    color: rgba(255, 0, 0, 0.3);
    transform: translate(-50%, -50%);
    z-index: 9999;
    pointer-events: none;
} */
#image-grid {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    grid-template-rows: repeat(10, 1fr);
    gap: 0px;
    margin-bottom: 50px;
}

.image-item {
    width: 100%;
    height: 100%;
    object-fit: cover;
    user-select: none;
    -webkit-user-drag: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;

    -moz-user-select: none;
    -ms-user-select: none;
    pointer-events: none;
    -moz-user-focus: none;
    -moz-user-modify: none;

    -khtml-user-select: none;
    user-select: none;
}

.load-more {
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
}

.load-more:hover {
    background-color: #0056b3;
}

@media print {
    .image-item {
        display: none;
    }
}

.container {
    text-align: center;
    justify-content: center;
    padding: 20px;
    background-color: #f4f4f4;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    max-width: 1000px;
    margin: 0 auto;
    /* display: none; */
}

#loading {
    position: fixed;
    top: 48%;
    left: 48%;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 8px solid #f3f3f3;
    /* Light gray */
    border-top: 8px solid #3498db;
    /* Blue */
    animation: spin 1s infinite linear;
    display: none;
    /* Initially hidden */
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Styles for the entry page */
.entry-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
    text-align: center;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: #f9f9f9;
}

input {
    padding: 10px;
    margin-bottom: 10px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #ccc;
    width: 200px;
    text-align: center;
}