body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #1a1c1e 0%, #2d3436 100%);
}

.container {
    text-align: center;
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    max-width: 90%;
    width: 400px;
}

h1 {
    color: #1a1c1e;
    margin-bottom: 2rem;
    font-weight: 600;
}

.status-container {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e9ecef;
}

.button-container {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

#status-message {
    color: #495057;
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.6;
}

#status-message small {
    display: block;
    margin-top: 0.5rem;
    color: #6c757d;
    font-size: 0.9rem;
}

button {
    background: #4c6ef5;
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(76, 110, 245, 0.2);
}

button:hover {
    background: #364fc7;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(76, 110, 245, 0.3);
}

button:active {
    transform: translateY(0);
}

button:disabled {
    background: #dee2e6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}
