body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column; /* Align children vertically */
}

.content-wrapper {
    text-align: center;
}

.maintenance-box {
    text-align: center;
    max-width: 800px;
    padding: 50px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 2px rgba(21, 80, 65, 0.5); /* Optional: added shadow for depth */
    margin-top: 20px; /* Spacing between the image and the box */
}

.maintenance-image {
    max-width: 100%;
    height: auto;
    /* Center the image */
    display: block;
    margin: 0 auto;
}

.maintenance-header {
    font-size: 24px;
    color: #333;
    margin-bottom: 50px;
}

.maintenance-text {
    font-size: 16px;
    color: #333;
    margin-top: 20px;
}

.status-link {
    font-size: 16px;
    color: #155041;
    text-decoration: none;
    margin-top: 20px;
    display: inline-block;
}

.status-link:hover {
    text-decoration: underline;
}

.apology-text {
    color: #7f8c8d;
    font-size: 14px;
    margin-top: 30px;
    font-style: italic;
}
