/* styles.css */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
}

.container {
    max-width: 400px;
    margin: 40px auto 20px;
    padding: 10px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.containertop {
    max-width: 400px;
    margin: 20px auto 20px;
    padding: 10px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/*
.containernoimage {
    max-width: 400px;
    margin: 0px auto 20px;
    padding: 10px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
*/

.containernoimage {
    max-width: 400px;
    margin: 0px auto 20px;
    padding: 10px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex; /* Use flexbox for centering */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    height: 290px; /* Set a height for the container to center the spinner */
}


/* Spinning wheel styles */
.spinning-wheel {
    width: 70px;
    height: 70px;
    border: 10px solid #f4f4f4; /* Light grey border */
    border-top: 10px solid #007bff; /* Blue border on top to create the spinning effect */
    border-radius: 50%; /* Make the element circular */
    animation: spin 1s linear infinite; /* Spin animation */
}

/* Keyframes for spin animation */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


.containerbottom {
    max-width: 400px;
    margin: 20px auto 50px;
    padding: 10px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.containerframe {
  /* Center the container horizontally */
  margin: 0 0 0 0;
  /* Optionally, you can set a width for the container */
  width: 100%; /* Adjust as needed */
}

#containerframe iframe {
  /* Set the iframe to take the full width available within its container */
  width: 100%;
}

h1 {
    text-align: center;
    color: #333;
    background-color: #f4f4f4;
    padding: 10px;
    border-radius: 5px;
    font-size: 20px;
}

form {
    margin-top: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
}

input[type="text"],
input[type="password"],
button {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

button {
    background-color: #007bff;
    color: #fff;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

.new-button {
    width: 180px;
    height: 50px;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-sizing: border-box;
    background-color: #007bff;
    color: white;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    transition-duration: 0.4s;
    outline: none;
}

.new-button:hover {
    background-color: #005fb3;
}

.new-button:active {
    background-color: #007bff;
}

p {
    margin-top: 20px;
    text-align: center;
}

a {
    display: block;
    text-align: center;
    margin-top: 10px;
    color: #007bff;
    text-decoration: none;
}

#imageFrame {
    width: 100%;
    max-width: 416px;
    height: 312px;
    display: block;
    margin: 0 auto;
}

@media screen and (max-width: 480px) {
    .container {
        max-width: 90%;
    }
}

