/* Additional custom styles strictly for Harpagan cards & internal views not covered by main.css */
.card-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}
.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--card-bg);
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 0.5rem;
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: all 0.2s;
}
.checklist-item.checked { opacity: 0.5; border-color: #198754; }
.checklist-item.checked label { text-decoration: line-through; }
.checklist-item input[type="checkbox"] { width: 22px; height: 22px; margin-top: 0.1rem; flex-shrink: 0; pointer-events: none; }
.checklist-item label { flex: 1; cursor: pointer; color: var(--text-color); font-size: 0.95rem; pointer-events: none;}

.training-day {
    padding: 1rem;
    border-left: 4px solid var(--border-color);
    margin-bottom: 1rem;
    background: var(--card-bg);
    border-radius: 0 0.5rem 0.5rem 0;
}
.training-day.today {
    border-left-color: var(--accent-color);
    background: rgba(13, 110, 253, 0.05); /* very light blue */
}
.theme-dark .training-day.today {
    background: rgba(110, 168, 254, 0.1);
}
.training-day.today .day-date { color: var(--accent-color); font-weight: 800; }
.day-date { font-weight: 600; margin-bottom: 0.3rem; display: block; font-size: 0.9rem;}
.day-desc { color: var(--text-color); font-size: 0.95rem; cursor: pointer; padding: 0.5rem; border-radius: 4px; transition: background 0.2s;}
.day-desc:hover { background: rgba(0,0,0,0.05); }
.theme-dark .day-desc:hover { background: rgba(255,255,255,0.05); }

.day-edit-input {
    width: 100%;
    padding: 0.8rem;
    background: var(--bg-color);
    border: 1px solid var(--accent-color);
    color: var(--text-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 0.95rem;
}
.edit-hint { font-size: 0.7rem; color: var(--accent-color); margin-top: 0.3rem; display: block;}

.view-content h2, .view-content h3 { color: var(--text-color); margin-top: 1.5rem; margin-bottom: 1rem; }
.view-content h3 { font-size: 1.25rem; }
.view-content ul, .view-content ol, .view-content p { color: var(--caption-color); margin-bottom: 1rem; }
.view-content ul li, .view-content ol li { margin-bottom: 0.5rem; }
