:root {
    --primary: #4285f4; /* Google Blue */
    --bg: #f8f9fa;
    --text: #202124;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background-color: var(--bg);
    color: var(--text);
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container { width: 90%; max-width: 600px; text-align: center; }

.card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border: 1px solid #e0e0e0;
}

.status-tag {
    background: #e6f4ea;
    color: #1e8e3e;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

code {
    background: #f1f3f4;
    padding: 2px 6px;
    border-radius: 4px;
    color: var(--primary);
}

.action-area {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}