:root {
    --site-text-color: #ffffff; /* Example: White */
    --pale-violet: #e6e6fa; /* Example: Lavender */
    --dark-violet: #4b0082; /* Example: Indigo */
}

.image-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.image-popup img {
    max-width: 90%;
    max-height: 90%;
}

.image-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px; /* This adds a 10px gap between images */
    justify-content: center; /* This will center the images within the container */
    margin-bottom: 50px;
}

.image-wrapper {
    position: relative;
    /*border: 1px solid #ccccff;*/
    display: inline-block;
    margin: 5px;
    text-align: center;
}

.image-wrapper img {
    display: block;
    margin-bottom: 5px;
}

.delete-button {
    position: absolute;
    top: 5px;
    right: 5px;
    background: #3200a6;
    color: white;
    border: none;
    padding: 2px 5px;
    cursor: pointer;
    font-size: 12px;
}

.restart-button {
    background: green;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 12px;
}

.placeholder {
    width: 256px;
    height: 256px;
    border: 2px dashed #d3d3d3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #d3d3d3;
}

.polling-status {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 16px;
    color: #d3d3d3;
}

.clear-storage-button {
    background: #3200a6;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 20px;
}

.error-box {
    background-color: red;
    color: white;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid white;
    margin-bottom: 20px;
    text-align: center;
}
.form-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 20px;
}

.image-wrapper-block {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

input[type="email"], input[type="password"] {
    background-color: #ccccff;
    color: black;
}


.warnbox {
    display: inline-block; /* Ensures the box is only as wide as needed */
    padding: 10px; /* Adds spacing inside the box */
    border: 3px solid red; /* Red border */
    border-radius: 8px; /* Rounded corners */
    background-color: #cccccc; /* White background */
    color: black; /* Black text */
    text-align: center; /* Centers text inside */
    margin: 0 auto; /* Centers the box itself */
}

.warnbox p {
    margin: 0; /* Remove default margins for better spacing */
}

.warnbox a {
    color: blue; /* Standard hyperlink color */
    text-decoration: underline; /* Underlined for clarity */
}

