/* === Fonts === */
/* Loaded via wp_enqueue_style in functions.php:
   Playfair Display (headers), Inter (body) */

/* === Devotions Page & Notes Collection=== */
.zd-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 16px;
    font-family: 'Inter', sans-serif;
}

.zd-wrapper h1,
.zd-wrapper h2,
.zd-wrapper h3,
.zd-wrapper h4 {
    font-family: 'Playfair Display', serif;
}

.zd-card {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.zd-loading {
    text-align: center;
    color: #888;
    font-style: italic;
    padding: 20px 0;
}

.zd-reference {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: #5a7300;
    margin: 0 0 10px;
}

.zd-text {
    font-size: 20px;
    line-height: 1.6;
    color: #2c2c2c;
    margin: 0 0 20px;
}

.zd-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.zd-btn {
    font-family: 'Inter', sans-serif;
    padding: 10px 18px;
    border-radius: 8px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s ease;
}

.zd-btn-primary {
    background: #c8f535;
    color: #2c2c2c;
}
.zd-btn-primary:hover { background: #b8e025; }
.zd-btn-primary:disabled { opacity: 0.6; cursor: not-allowed; }

.zd-btn-secondary {
    background: #f3fbd6;
    color: #5a7300;
	margin-right:5px;
}
.zd-btn-secondary:hover { background: #e6f7ad; }

#zd-chapter-title {
    margin: 0 0 14px;
    font-size: 22px;
    color: #2c2c2c;
}

.notes-title {
    margin: 0 0 14px;
    font-size: 22px;
    color: #2c2c2c;
}

.zd-chapter-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #3a3a3a;
    margin: 0 0 10px;
}

.zd-verse-num {
    font-weight: 700;
    color: #7a9a00;
    margin-right: 6px;
    font-size: 13px;
}

.zd-ref-label {
    font-size: 13px;
    color: #888;
    margin: -6px 0 12px;
}

#zd-notes-input {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    resize: vertical;
    margin-bottom: 12px;
}

#zd-notes-input:focus {
    outline: none;
    border-color: #7a9a00;
}

.zd-save-status {
    font-size: 14px;
    font-family: 'Inter', sans-serif;
}
.zd-save-status.zd-success { color: #2e7d32; }
.zd-save-status.zd-error { color: #c62828; }

/* === Notes Collection Page === */
.zd-collection-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 16px;
    font-family: 'Inter', sans-serif;
}

.zd-collection-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 20px;
}

.zd-empty {
    color: #888;
    font-style: italic;
}

.zd-notes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.zd-note-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.zd-note-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    flex-wrap: wrap;
    gap: 6px;
}

.zd-note-ref {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #5a7300;
    font-size: 16px;
}

.zd-note-date {
    font-size: 12px;
    color: #999;
}

.zd-note-verse {
    font-size: 14px;
    font-style: italic;
    color: #666;
    border-left: 3px solid #e6f7ad;
    padding-left: 10px;
    margin: 0 0 10px;
}

.zd-note-body {
    font-size: 15px;
    color: #2c2c2c;
    line-height: 1.6;
    margin: 0;
}