/* Parker - Minimal CSS */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    flex: 1;
}

/* Typography */
h1 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #111;
}

h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: #111;
}

h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

p {
    margin-bottom: 1rem;
}

/* Hero sections */
.hero, .success-hero, .error-hero {
    text-align: center;
    padding: 3rem 0 2rem;
}

.tagline {
    font-size: 1.125rem;
    color: #555;
    max-width: 480px;
    margin: 0 auto 2rem;
}

.signed-in-status {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1rem;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background-color: #2563eb;
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: background-color 0.2s;
}

.cta-button:hover {
    background-color: #1d4ed8;
}

.link-button {
    display: inline-block;
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border: 1px solid #2563eb;
    border-radius: 6px;
    transition: background-color 0.2s, color 0.2s;
}

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

/* Sections */
section {
    margin: 2rem 0;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
}

/* Lists */
ol, ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

li {
    margin-bottom: 0.75rem;
}

/* Success page */
.success-icon {
    width: 64px;
    height: 64px;
    background-color: #22c55e;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.account-info {
    font-size: 1.125rem;
    color: #555;
}

.timezone {
    font-size: 0.875rem;
    color: #777;
}

/* Error page */
.error-icon {
    width: 64px;
    height: 64px;
    background-color: #ef4444;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.error-message {
    color: #666;
    font-size: 1rem;
}

.error-help ul {
    list-style: none;
    padding-left: 0;
}

.error-help li {
    padding: 0.5rem 0;
}

.error-help a {
    color: #2563eb;
}

.back-home {
    text-align: center;
    margin-top: 2rem;
}

/* Email examples */
.email-example {
    background: #f5f5f5;
    border-radius: 6px;
    padding: 1rem;
    font-size: 0.875rem;
    margin: 1rem 0;
}

.email-example p {
    margin-bottom: 0.5rem;
}

.email-example .email-body {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #ddd;
    color: #555;
    white-space: pre-wrap;
}

.instruction {
    margin: 1.5rem 0;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.instruction:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* That's it section */
.thats-it {
    text-align: center;
}

.thats-it h2 {
    margin: 0;
}

/* Footer */
footer {
    text-align: center;
    padding: 1.5rem;
    color: #888;
    font-size: 0.875rem;
}

.footer-links {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #888;
    text-decoration: none;
}

.footer-links a:hover {
    color: #555;
    text-decoration: underline;
}

.footer-text {
    margin: 0;
}

/* Legal pages */
.legal-page h1 {
    margin-bottom: 0.5rem;
}

.last-updated {
    color: #666;
    font-size: 0.875rem;
    margin-bottom: 2rem;
}

.legal-section {
    margin: 0 0 1.5rem;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
}

.legal-section h2 {
    font-size: 1.1rem;
    margin: 0 0 0.75rem;
}

.legal-section p {
    margin-bottom: 0.75rem;
}

.legal-section ul {
    margin-bottom: 0.75rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
}

.legal-section a {
    color: #2563eb;
}

/* Responsive */
@media (max-width: 640px) {
    .container {
        padding: 1.5rem 1rem;
    }

    h1 {
        font-size: 1.5rem;
    }

    .tagline {
        font-size: 1rem;
    }

    section {
        padding: 1rem;
    }
}
