/* The Great CEO Within - Book-Specific Styles */

:root {
    --accent-color: #1e40af;
    --accent-color-dark: #1e3a8a;
    --accent-gradient: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    --section-title-bg: #1e40af;
    --key-box-color: #1e40af;
    --key-box-bg: #dbeafe;
    --verse-bg: #eff6ff;
    --intro-bg: #eff6ff;
}

/* Central node with book theme */
.central-node {
    background: var(--accent-gradient);
}

/* Technique / playbook box */
.technique-box {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-left: 4px solid #1e40af;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 12px 12px 0;
}

.technique-box h4 {
    color: #1e3a8a;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

/* Template / checklist box */
.template-box {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.template-box h4 {
    color: #334155;
    margin-bottom: 1rem;
}

.template-box ol, .template-box ul {
    margin: 0.5rem 0 0 1.25rem;
    color: #475569;
}

/* Quote box */
.quote-box {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-left: 4px solid #1e40af;
    padding: 1.5rem 2rem;
    margin: 1.5rem 0;
    font-style: italic;
    font-size: 1.1rem;
    color: #334155;
    border-radius: 0 12px 12px 0;
}

.quote-box .attribution {
    font-style: normal;
    font-size: 0.9rem;
    color: #64748b;
    margin-top: 0.75rem;
    text-align: right;
}

/* Insight box */
.insight-box {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border-left: 4px solid #059669;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 12px 12px 0;
}

.insight-box h4 {
    color: #047857;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

/* Warning / common mistake box */
.warning-box {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border-left: 4px solid #dc2626;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 12px 12px 0;
}

.warning-box h4 {
    color: #dc2626;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

/* Practice / exercise box */
.practice-box {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-left: 4px solid #d97706;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 12px 12px 0;
}

.practice-box h4 {
    color: #b45309;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

/* Quick reference / summary card */
.quick-reference {
    background: white;
    border: 2px solid #1e40af;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.quick-reference h4 {
    color: #1e40af;
    margin-bottom: 1rem;
    text-align: center;
}
