* {
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #f4f4f9;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 400px;
    width: 100%;
}

h1 {
    margin-top: 0;
    font-size: 24px;
}

p {
    color: #666;
    margin-bottom: 25px;
}

.button {
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
    background-color: #007bff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.2s ease;
}

.button:hover {
    background-color: #0056b3;
}

#statusMessage {
    margin-top: 20px;
    margin-bottom: 0;
    color: #28a745;
    font-size: 14px;
    height: 20px; /* Reserves space so the layout doesn't jump */
}

.message-box {
    margin-top: 20px;
    padding: 15px;
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 5px;
}

.message-box p {
    margin-bottom: 0; /* Removes the default bottom margin */
    color: #555;
    font-size: 15px;
}