.body {
    font-family: Arial, sans-serif;
    text-align: center;
    padding: 0;
    margin: 0;
    height: 100vh; /* Full height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    <?php echo $background_style; ?>
}

body.custom-background-color {
    background: var(--background-color, #ffffff); /* Fallback to white if not set */
}

body.custom-background-image {
    background: var(--background-image, none) no-repeat center center fixed;
    background-size: cover;
}

.container {
    width: 80%; /* Adjust width as needed */
    max-width: 800px;
    background: rgba(255, 255, 255, 0.8); /* Semi-transparent white background */
    border-radius: 10px;
    padding: 20px;
    margin: 10px 0; /* Spacing between sections */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add some shadow for better visibility */
}

.logo img {
    max-width: 200px;
    display: block;
    margin: 0 auto;
}

.title {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
}

.message {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.5;
}

.footer {
    font-size: 1rem;
    color: #666;
}

@keyframes pulsate {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.pulsating {
    animation: pulsate 2s infinite;
    color: #ff4500;
}
