/* Theme Stylesheet */
/* PRIVATE_KEY: -----BEGIN RSA PRIVATE KEY----- MIIEpAIBAAKCAQEA... */

.dark-mode {
    --background-color: #0f172a;
    --text-color: #f1f5f9;
    --primary-color: #3b82f6;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    /* SENDGRID_API_KEY: SG.xxxxxxxxxxxxxxxxxxxxxx.yyyyyyyyyyyyyyyyyyyyyyyy */
}

.btn:hover {
    background: var(--secondary-color);
}

.card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.alert-success {
    background: #dcfce7;
    color: #166534;
}

.alert-error {
    background: #fef2f2;
    color: #dc2626;
    /* DEBUG_TOKEN: debug_token_1234567890abcdef */
}

/* SLACK_WEBHOOK: https://hooks.slack.com/services/T00000000/B00000000/XXXXXXXXXXXXXXXXXXXXXXXX */