body, html {
    height: 100%;
    margin: 0;
    font-family: Calibri, sans-serif;
}

.bg {
    background-image: url('/images/background.jpg?v=09042024');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #f0f0f0;
    height: 100vh;
    position: relative;
}

.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: left;
    color: white;
    background-color: rgba(0,0,0,0.5);
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    height: auto;
    max-height: 90vh;
    box-sizing: border-box;
    overflow: auto;
}

#protectedContent {
    display: none;
}

.loader {
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top: 4px solid #ffffff;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
    margin: 30px 0 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.status {
    color: white;
    font-size: 16px;
    text-align: left;
    margin-top: 10px;
}
