* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: #f5f5f5;
    color: #333;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
    padding: 48px;
    max-width: 560px;
    width: 90%;
}

h1 {
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 32px;
    color: #111;
}

.status-card {
    text-align: center;
    padding: 32px 24px;
    border-radius: 8px;
    margin-bottom: 32px;
}

.status-card.success {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
}

.status-icon {
    font-size: 3rem;
    color: #059669;
    margin-bottom: 12px;
}

.status-message {
    font-size: 1.05rem;
    font-weight: 500;
    color: #065f46;
}

.details {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    background: #fff;
}

.label {
    font-size: 0.875rem;
    color: #6b7280;
}

.value {
    font-size: 0.875rem;
    font-weight: 500;
    color: #111;
}
