/* --- Markdown Styles --- */
.task-text strong,
.task-description strong {
    font-weight: 700;
}

.task-text em,
.task-description em {
    font-style: italic;
}

.task-text del,
.task-description del {
    text-decoration: line-through;
}

.task-text a,
.task-description a {
    color: #0052cc;
    text-decoration: none;
}

.task-text a:hover,
.task-description a:hover {
    text-decoration: underline;
}

.task-text code,
.task-description code {
    font-family: monospace;
    background-color: #F3F4F6;
    padding: 2px 4px;
    border-radius: 4px;
    font-size: 0.9em;
}

.task-text pre,
.task-description pre {
    background-color: #F3F4F6;
    padding: 8px;
    border-radius: 4px;
    overflow-x: auto;
}

.task-text ul,
.task-text ol,
.task-description ul,
.task-description ol {
    margin-top: 4px;
    margin-bottom: 4px;
    padding-left: 20px;
}

.task-text li,
.task-description li {
    margin-bottom: 2px;
    /* This rule must NOT have display:flex */
}

/* Clipboard Toast */
.clipboard-toast {
    position: fixed;
    background: #333;
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    pointer-events: none;
    z-index: 10000;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.2s, transform 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.clipboard-toast.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- End Markdown --- */
