.drafts-list-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 500px;
    overflow-y: auto;
    padding-right: 4px;
}

.draft-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.draft-card.draft-valide {
    opacity: 0.65;
    border-color: rgba(16, 185, 129, 0.3);
}

.draft-card-left {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.draft-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.85rem;
}

.draft-valide .draft-icon {
    background: #10b981;
}

.draft-info {
    min-width: 0;
}

.draft-label {
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.draft-meta {
    font-size: 0.78rem;
    color: var(--color-text-muted);
    margin-top: 2px;
}

.draft-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    height: 22px;
    padding: 0 10px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    flex-shrink: 0;
    line-height: 1;
}

.draft-status i {
    line-height: 1;
    font-size: 0.7rem;
}

.draft-status.en-cours {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
}

.draft-status.valide {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
}

.draft-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.validate-draft-footer {
    padding: 12px 0 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    margin-top: 8px;
}

.btn-validate-footer {
    width: 100%;
    justify-content: center;
    padding: 10px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    gap: 8px;
}

.btn-validate {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.btn-validate:hover {
    background: rgba(16, 185, 129, 0.2);
}
