body {
    font-family: Arial, sans-serif;
    background-color: #f3f4f6;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
}

h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

p {
    font-size: 1rem;
    color: #374151;
    margin-bottom: 2rem;
    text-align: center;
    max-width: 500px;
}

button {
    background-color: #3b82f6;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
    margin-bottom: 1rem; /* adds space below each button */
}

button:hover {
    background-color: #2563eb;
}

.status {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #10b981;
}
