/* writer-note.css */
.writer-briefing-note {
    direction: rtl;
    padding: 20px 25px;
    margin: 0 0 25px 0;
    border: 1px solid #17a2b8; /* لون مميز للإطار */
    border-right-width: 5px; /* شريط جانبي سميك للفت الانتباه */
    border-radius: 8px;
    background-color: #f1faff; /* خلفية بلون أزرق فاتح جداً */
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.08);
    font-family: "Tajawal", sans-serif;
    animation: slideDownFadeIn 0.6s ease-out;
}

.writer-briefing-note h1,
.writer-briefing-note h2,
.writer-briefing-note h3 {
    color: #0056b3; /* لون أغمق للعناوين */
    border-bottom: 1px solid #b_deff;
    padding-bottom: 8px;
    margin-top: 0;
    margin-bottom: 15px;
}

.writer-briefing-note p {
    line-height: 1.8;
    font-size: 1.05em; /* خط أكبر قليلاً لسهولة القراءة */
    color: #1c3d5a;
    margin-bottom: 12px;
}

.writer-briefing-note ul,
.writer-briefing-note ol {
    padding-right: 25px;
    margin-bottom: 15px;
}

.writer-briefing-note li {
    margin-bottom: 8px;
}

.writer-briefing-note a {
    color: #007bff;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px dashed #007bff;
}

.writer-briefing-note a:hover {
    color: #0056b3;
    border-bottom-style: solid;
}

.writer-briefing-note strong {
    color: #0c5460;
}

.writer-briefing-note code {
    background-color: #e9ecef;
    padding: 2px 5px;
    border-radius: 4px;
    font-family: monospace;
}

@keyframes slideDownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}