/* Styles pour le dashboard des manuscrits */
.manuscript-dashboard {
    padding-top: 160px; /* Ajusté à 160px pour navbar 140px + marge */
}

.dashboard-header {
    margin-bottom: 2rem;
}

.table th {
    font-weight: 600;
}

.table .manuscript-title {
    font-weight: 500;
}

.table .manuscript-summary {
    font-size: 0.9rem;
    color: #6c757d;
    max-width: 300px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.35em 0.65em;
    font-size: .85em;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 50rem; /* Pill shape */
}

.status-badge .icon {
    margin-right: 0.5em;
}

.status-brouillon { background-color: #6c757d; } /* Gris */
.status-publie { background-color: #198754; } /* Vert */
.status-envoye { background-color: #0d6efd; } /* Bleu */
.status-accepte { background-color: #ffc107; color: #000; } /* Or */
.status-refuse { background-color: #dc3545; } /* Rouge */

.action-btn {
    background: none;
    border: none;
    color: #6c757d;
    padding: 0.25rem 0.5rem;
    margin: 0 0.25rem;
    cursor: pointer;
}

.action-btn:hover {
    color: #0d6efd;
}

.filters .form-control, .filters .form-select {
    max-width: 200px;
    display: inline-block;
    margin-right: 1rem;
}
