body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #cfd6dc;
}
.top-bar {
    background-color: #007BFF;
    color: white;
    padding: 1px;
    text-align: center;
}
.container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    text-align: center;
}
h1 {
    color: #007BFF;
}
.status {
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 1.2em;
}
.debug-info {
    margin-top: 20px;
    text-align: left;
    white-space: pre-wrap;
    border: 1px solid #ddd;
    padding: 15px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    margin: 0 auto;
}

/* Container for the animated background */
#background-wrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1; /* Ensure it's behind other content */
}

/* Cloud animation keyframes */
@keyframes animateCloud {
    0% {
        margin-left: -1000px;
    }
    100% {
        margin-left: 100%;
    }
}

/* Cloud animation styles */
.cloud {
    background: #fff;
    background: linear-gradient(top, #fff 5%, #f1f1f1 100%);
    border-radius: 100px;
    box-shadow: 0 8px 5px rgba(0, 0, 0, 0.1);
    height: 120px;
    width: 350px;
    position: absolute;
}

.cloud:after, .cloud:before {
    background: #fff;
    content: '';
    position: absolute;
    z-index: -1;
}

.cloud:after {
    border-radius: 100px;
    height: 100px;
    left: 50px;
    top: -50px;
    width: 100px;
}

.cloud:before {
    border-radius: 200px;
    width: 180px;
    height: 180px;
    right: 50px;
    top: -90px;
}

.x1 {
    animation: animateCloud 35s linear infinite;
    transform: scale(0.65);
}

.x2 {
    animation: animateCloud 20s linear infinite;
    transform: scale(0.3);
}

.x3 {
    animation: animateCloud 30s linear infinite;
    transform: scale(0.5);
}

.x4 {
    animation: animateCloud 18s linear infinite;
    transform: scale(0.4);
}

.x5 {
    animation: animateCloud 25s linear infinite;
    transform: scale(0.55);
}

/* Position the clouds */
.x1 { top: 90%; left: -50%; }
.x2 { top: 80%; left: -30%; }
.x3 { top: 90%; left: -10%; }
.x4 { top: 80%; left: 10%; }
.x5 { top: 70%; left: 30%; }
