/* Journal Feature Styles */
/* Styles specific to the journaling feature */

.download-section {
    margin-bottom: 20px;
    text-align: right;
}

.journal-entry {
    margin-bottom: 20px;
}

.journal-date {
    font-size: 0.9em;
    color: #718096;
    margin-bottom: 5px;
}

.journal-content {
    background: #f7fafc;
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid #667eea;
    margin-bottom: 10px;
}

.journal-form {
    margin-top: 20px;
}

@media (min-width: 768px) {
    .journal-form {
        margin-top: 30px;
    }
}

.journal-form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 16px;
    font-family: inherit;
    resize: vertical;
    min-height: 120px;
    margin-bottom: 15px;
}

.journal-form textarea:focus {
    outline: none;
    border-color: #667eea;
}

.journal-char-counter {
    text-align: right;
    font-size: 0.85em;
    color: #718096;
    margin-top: -10px;
    margin-bottom: 10px;
}

.journal-char-counter span {
    font-weight: 600;
    color: #4a5568;
}

.session-summary {
    background: #edf2f7;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.session-summary h3 {
    margin-bottom: 10px;
    color: #4a5568;
}

.session-summary p {
    color: #718096;
    font-size: 0.9em;
}