/**
 * Bundle Manuscrit — Styles edition et suivi manuscrits
 * Sources : manuscript + editor + bonnes-feuilles + suivi-manuscrit + manuscripts
 * Sprint 4 — Consolidation CSS
 */

/* ============================================================
 * SOURCE: components/manuscript.css
 * ============================================================ */
/*
===============================================================================
MANUSCRIPT DEPOSIT PAGE STYLES
===============================================================================
Styles pour la page de dépôt de manuscrit - BookConnect
Sections : Hero, Workflow, Steps, Dashboard, CTA, Plumes System
===============================================================================
*/

/* ===== VARIABLES CSS ===== */
:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    --success-color: #10b981;
    --warning-color: #fbbf24;
    --primary-blue: #3b82f6;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --bg-light: #f8fafc;
    --bg-gray: #e2e8f0;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

/* ===== SECTION HERO ===== */
.manuscript-hero {
    background: var(--primary-gradient);
    color: white;
    padding: 6rem 0 4rem;
    text-align: center;
}

.manuscript-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.manuscript-hero p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

/* Statistiques Hero */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-item strong {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-item span {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ===== SECTION WORKFLOW TIMELINE ===== */
.workflow-overview {
    padding: 5rem 0;
    background: var(--bg-light);
}

.workflow-timeline {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    position: relative;
    gap: 1rem;
}

.workflow-timeline::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 5%;
    right: 5%;
    height: 2px;
    background: var(--bg-gray);
    z-index: 1;
}

.timeline-step {
    text-align: center;
    flex: 1;
    position: relative;
    z-index: 2;
    background: white;
    padding: 1.5rem 1rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    max-width: 180px;
    margin: 0 auto;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--bg-gray);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0 auto 1rem;
    transition: var(--transition);
}

.timeline-step.active .step-number {
    background: var(--primary-blue);
    color: white;
}

.timeline-step h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 600;
    line-height: 1.3;
}

.timeline-step p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
    margin: 0;
}

/* ===== SECTION ÉTAPES DÉTAILLÉES ===== */
.detailed-steps {
    padding: 5rem 0;
}

.step-detail {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    margin-bottom: 2rem;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.step-detail.visible {
    opacity: 1;
    transform: translateY(0);
}

/* En-tête des étapes */
.step-header {
    background: linear-gradient(135deg, #f1f5f9 0%, var(--bg-gray) 100%);
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.step-badge {
    background: var(--primary-blue);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.step-header h3 {
    flex: 1;
    margin: 0;
    font-size: 1.4rem;
    color: var(--text-primary);
}

.duration {
    background: var(--success-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Contenu des étapes */
.step-content {
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
}

.step-actions h4,
.step-deliverables h4,
.step-interactions h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.step-actions ul,
.step-deliverables ul {
    list-style: none;
    padding: 0;
}

.step-actions li,
.step-deliverables li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f1f5f9;
    position: relative;
    padding-left: 1.5rem;
}

.step-actions li::before,
.step-deliverables li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.interaction-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.interaction-item {
    background: var(--bg-light);
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-blue);
}

.interaction-item strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.interaction-item p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ===== SECTION DASHBOARD PREVIEW ===== */
.author-dashboard-preview {
    padding: 5rem 0;
    background: var(--bg-light);
}

.dashboard-mockup {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    margin-top: 2rem;
}

.dashboard-header {
    background: var(--primary-gradient);
    color: white;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.status-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-badge.in-review {
    background: var(--warning-color);
    color: #92400e;
}

/* Contenu du dashboard */
.dashboard-content {
    padding: 2rem;
}

.progress-section {
    margin-bottom: 2rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
    margin: 1rem 0;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--success-color), #059669);
    transition: width 0.3s ease;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.stat-card h5 {
    margin: 0 0 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.recent-activity {
    border-top: 1px solid #e5e7eb;
    padding-top: 1.5rem;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.activity-item i {
    color: var(--primary-blue);
    width: 20px;
}

.activity-item time {
    margin-left: auto;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* ===== SECTION CTA (CALL TO ACTION) ===== */
.cta-section {
    background: var(--secondary-gradient);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* Boutons génériques */
.btn {
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--primary-blue);
    color: white;
}

.btn-primary:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: rgb(98, 98, 98);
    border: 2px solid rgb(89, 89, 89);
}

.btn-secondary:hover {
    background: white;
    color: var(--text-primary);
}

/* ===== SECTION SYSTÈME DE PLUMES ===== */
.plumes-system {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-gray) 100%);
}

.plumes-overview {
    margin-top: 2rem;
}

/* Affichage du solde */
.plumes-balance {
    text-align: center;
    margin-bottom: 3rem;
}

.balance-display {
    background: linear-gradient(135deg, var(--warning-color) 0%, #f59e0b 100%);
    color: white;
    padding: 2rem;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 25px -5px rgba(251, 191, 36, 0.3);
}

.balance-display i {
    font-size: 2rem;
}

.balance-number {
    font-size: 3rem;
    font-weight: 700;
}

.balance-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Grille des sections Plumes */
.plumes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.plumes-section {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.plumes-section h3 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Gagner des Plumes */
.earn-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.earn-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--success-color);
}

.earn-action {
    font-weight: 500;
    color: var(--text-primary);
}

.earn-points {
    font-weight: 700;
    color: var(--success-color);
    font-size: 0.9rem;
}

/* Dépenser des Plumes */
.spend-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.spend-category h4 {
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.spend-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-blue);
    margin-bottom: 0.5rem;
}

.spend-service {
    font-weight: 500;
    color: var(--text-primary);
}

.spend-cost {
    font-weight: 700;
    color: var(--primary-blue);
    font-size: 0.9rem;
}

/* Avantages des Plumes */
.plumes-benefits {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.plumes-benefits h3 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.levels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.level-card {
    text-align: center;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
}

.level-card.bronze {
    background: linear-gradient(135deg, #cd7f32 0%, #b8860b 100%);
    color: white;
}

.level-card.silver {
    background: linear-gradient(135deg, #c0c0c0 0%, #a8a8a8 100%);
    color: var(--text-primary);
}

.level-card.gold {
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
    color: var(--text-primary);
}

.level-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.level-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.level-card p {
    font-weight: 600;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.level-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.level-card li {
    padding: 0.25rem 0;
    font-size: 0.9rem;
    position: relative;
    padding-left: 1rem;
}

.level-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: 700;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    /* Hero responsive */
    .manuscript-hero h1 {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    /* Workflow responsive */
    .workflow-timeline {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }
    
    .workflow-timeline::before {
        display: none;
    }
    
    .timeline-step {
        max-width: 300px;
        width: 100%;
    }
    
    /* Steps responsive */
    .step-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Dashboard responsive */
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    /* CTA responsive */
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    /* Plumes responsive */
    .plumes-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .levels-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .balance-display {
        flex-direction: column;
        text-align: center;
    }
    
    .balance-number {
        font-size: 2.5rem;
    }
}

/*
===============================================================================
FIN DU FICHIER MANUSCRIPT.CSS
===============================================================================
*/

/* ============================================================
 * SOURCE: components/editor.css
 * ============================================================ */
/* Styles pour la page gestion manuscrits éditeur */

/* Hero Section Éditeur */
.editor-hero {
    background: linear-gradient(135deg, #1e40af 0%, #3730a3 100%);
    color: white;
    padding: 6rem 0 4rem;
    text-align: center;
}

.editor-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.editor-hero p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

/* Dashboard Éditeur */
.editor-dashboard {
    padding: 5rem 0;
    background: #f8fafc;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.dashboard-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.card-header {
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-header h3 {
    margin: 0;
    color: #1e293b;
}

.badge {
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.badge.urgent {
    background: #ef4444;
    color: white;
}

.submissions-list {
    padding: 1.5rem 2rem;
}

.submission-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.submission-item:last-child {
    border-bottom: none;
}

.submission-info h4 {
    margin: 0 0 0.5rem;
    color: #1e293b;
    font-size: 1.1rem;
}

.submission-info p {
    margin: 0 0 0.25rem;
    color: #64748b;
    font-size: 0.9rem;
}

.time-ago {
    font-size: 0.8rem;
    color: #94a3b8;
}

.submission-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-quick {
    padding: 0.4rem 0.8rem;
    border: none;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-quick.accept {
    background: #10b981;
    color: white;
}

.btn-quick.review {
    background: #f59e0b;
    color: white;
}

.btn-quick.reject {
    background: #ef4444;
    color: white;
}

.btn-quick:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.view-all {
    display: block;
    padding: 1rem 2rem;
    text-align: center;
    color: #3b82f6;
    text-decoration: none;
    border-top: 1px solid #f1f5f9;
    font-weight: 500;
}

.view-all:hover {
    background: #f8fafc;
}

/* Pipeline */
.pipeline-stages {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.stage {
    text-align: center;
    flex: 1;
}

.stage-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 0.5rem;
}

.stage-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

/* Workflow Éditorial */
.editorial-workflow {
    padding: 5rem 0;
}

.workflow-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.workflow-step {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.workflow-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
}

.step-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.workflow-step h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.workflow-step p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.step-tools {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.tool {
    background: #f1f5f9;
    color: #475569;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Outils de Gestion */
.management-tools {
    padding: 5rem 0;
    background: #f8fafc;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.tool-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.tool-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.tool-card h3 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.tool-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.tool-card ul {
    list-style: none;
    padding: 0;
}

.tool-card li {
    padding: 0.5rem 0;
    color: #475569;
    position: relative;
    padding-left: 1.5rem;
}

.tool-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

/* Système de Plumes Éditeur */
.editor-plumes-system {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.editor-plumes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.plumes-section.earn-editor,
.plumes-section.spend-editor {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.spend-categories {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Analytics */
.editor-analytics {
    padding: 5rem 0;
}

.analytics-dashboard {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.analytics-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.analytics-card h3 {
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.metric {
    text-align: center;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
}

.metric-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.metric-label {
    display: block;
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 0.5rem;
}

.metric-trend {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
}

.metric-trend.up {
    background: #dcfce7;
    color: #166534;
}

.metric-trend.down {
    background: #fef2f2;
    color: #dc2626;
}

.genre-distribution {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.genre-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.genre-name {
    min-width: 80px;
    font-weight: 500;
    color: #1e293b;
}

.bar-container {
    flex: 1;
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
    transition: width 0.8s ease;
}

.genre-percent {
    min-width: 40px;
    text-align: right;
    font-weight: 600;
    color: #3b82f6;
}

/* CTA Éditeur */
.editor-cta {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.editor-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.editor-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 1024px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .workflow-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tools-grid {
        grid-template-columns: 1fr;
    }
    
    .editor-plumes-grid {
        grid-template-columns: 1fr;
    }
    
    .analytics-dashboard {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .editor-hero h1 {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .workflow-steps {
        grid-template-columns: 1fr;
    }
    
    .submission-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .submission-actions {
        width: 100%;
        justify-content: flex-end;
    }
    
    .pipeline-stages {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

/* ============================================================
 * SOURCE: bonnes-feuilles.css
 * ============================================================ */
/**
 * Styles pour le système de gestion des bonnes feuilles
 * BookConnect - Manuscrits
 */

/* Section d'upload */
.upload-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 2px dashed #dee2e6;
    transition: all 0.3s ease;
}

.upload-section:hover {
    border-color: #0d6efd;
    background: linear-gradient(135deg, #e7f1ff 0%, #d0e7ff 100%);
}

.upload-section .form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Section des fichiers */
.files-section {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tableau des fichiers */
.files-section .table {
    margin-bottom: 0;
}

.files-section .table tbody tr {
    transition: all 0.2s ease;
}

.files-section .table tbody tr:hover {
    background-color: #f8f9fa;
    transform: translateX(5px);
}

.files-section .table tbody tr.table-success {
    background-color: #d1e7dd !important;
}

.files-section .table tbody tr.table-success:hover {
    background-color: #c3e0cf !important;
}

/* Boutons d'action */
.btn-group-sm .btn {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.btn-group-sm .btn:hover {
    transform: scale(1.1);
}

.btn-group-sm .btn-outline-primary:hover {
    background-color: #0d6efd;
    color: white;
}

.btn-group-sm .btn-outline-success:hover {
    background-color: #198754;
    color: white;
}

.btn-group-sm .btn-outline-warning:hover {
    background-color: #ffc107;
    color: #000;
}

.btn-group-sm .btn-outline-danger:hover {
    background-color: #dc3545;
    color: white;
}

/* Accordéon */
.accordion-button {
    font-weight: 500;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background-color: #e7f1ff;
    color: #0d6efd;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.accordion-button::after {
    transition: transform 0.3s ease;
}

.accordion-body {
    padding: 1.5rem;
    background-color: #f8f9fa;
}

/* Badges */
.badge {
    font-weight: 500;
    padding: 0.35em 0.65em;
    transition: all 0.2s ease;
}

.badge:hover {
    transform: scale(1.05);
}

/* Alertes */
.alert {
    border-radius: 0.5rem;
    border-left: 4px solid;
}

.alert-success {
    border-left-color: #198754;
    background-color: #d1e7dd;
}

.alert-info {
    border-left-color: #0dcaf0;
    background-color: #cff4fc;
}

.alert-warning {
    border-left-color: #ffc107;
    background-color: #fff3cd;
}

.alert-danger {
    border-left-color: #dc3545;
    background-color: #f8d7da;
}

/* Modal de prévisualisation */
#previewModal .modal-dialog {
    max-width: 90%;
}

#previewModal .modal-content {
    border-radius: 0.5rem;
    overflow: hidden;
}

#previewModal .modal-header {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    border-bottom: none;
}

#previewModal .modal-body {
    padding: 0;
}

#pdfPreviewContainer {
    background-color: #525659;
    position: relative;
}

#pdfPreviewFrame {
    width: 100%;
    height: 100%;
    border: none;
}

#previewModal .modal-footer {
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
}

/* Cartes */
.card {
    border-radius: 0.5rem;
    overflow: hidden;
}

.card-header {
    font-weight: 600;
    border-bottom: 2px solid rgba(0, 0, 0, 0.125);
}

.card.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
    transition: box-shadow 0.3s ease;
}

.card.shadow-sm:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

/* Icônes */
.fas, .far {
    transition: all 0.2s ease;
}

.btn:hover .fas,
.btn:hover .far {
    transform: scale(1.1);
}

/* Conseils */
.card.bg-light {
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
}

.card.bg-light:hover {
    border-color: #0d6efd;
    box-shadow: 0 0.125rem 0.25rem rgba(13, 110, 253, 0.25);
}

.card.bg-light ul {
    padding-left: 1.2rem;
}

.card.bg-light ul li {
    margin-bottom: 0.25rem;
    color: #495057;
}

/* Responsive */
@media (max-width: 768px) {
    .upload-section {
        padding: 1rem;
    }
    
    .files-section .table {
        font-size: 0.875rem;
    }
    
    .btn-group-sm .btn {
        padding: 0.2rem 0.4rem;
        font-size: 0.75rem;
    }
    
    #previewModal .modal-dialog {
        max-width: 95%;
        margin: 0.5rem;
    }
    
    #pdfPreviewContainer {
        height: 70vh !important;
    }
}

@media (max-width: 576px) {
    .card-header h5 {
        font-size: 1rem;
    }
    
    .badge {
        font-size: 0.75rem;
    }
    
    .alert {
        font-size: 0.875rem;
    }
    
    .btn-group {
        display: flex;
        flex-direction: column;
    }
    
    .btn-group .btn {
        margin-bottom: 0.25rem;
        border-radius: 0.25rem !important;
    }
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.loading {
    animation: pulse 1.5s ease-in-out infinite;
}

/* États de chargement */
.uploading {
    pointer-events: none;
    opacity: 0.6;
    position: relative;
}

.uploading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2rem;
    height: 2rem;
    margin: -1rem 0 0 -1rem;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #0d6efd;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Tooltips personnalisés */
[title] {
    position: relative;
    cursor: help;
}

/* Drag and drop (pour future implémentation) */
.upload-section.drag-over {
    border-color: #0d6efd;
    background-color: #e7f1ff;
    border-style: solid;
}

.upload-section.drag-over::before {
    content: '📄 Déposez votre fichier PDF ici';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.2rem;
    font-weight: 600;
    color: #0d6efd;
    pointer-events: none;
}

/* Indicateurs de statut */
.status-indicator {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 0.5rem;
}

.status-indicator.active {
    background-color: #198754;
    box-shadow: 0 0 0 2px rgba(25, 135, 84, 0.3);
}

.status-indicator.archived {
    background-color: #6c757d;
}

/* Transitions globales */
* {
    transition-property: background-color, border-color, color, box-shadow, transform;
    transition-duration: 0.2s;
    transition-timing-function: ease;
}

/* Print styles */
@media print {
    .upload-section,
    .btn,
    .accordion-button,
    #previewModal {
        display: none !important;
    }
    
    .files-section .table {
        page-break-inside: avoid;
    }
}

/* ============================================================
 * SOURCE: pages/suivi-manuscrit.css
 * ============================================================ */
/* ============================================
   Suivi Manuscrit - Page Styles
   ============================================ */

/* --- Page Layout --- */
.suivi-page {
    padding-top: 120px;
    padding-bottom: 3rem;
}

/* --- Horizontal Stepper --- */
.stepper-container {
    overflow-x: auto;
    padding: 20px 0;
    margin-bottom: 2rem;
    -webkit-overflow-scrolling: touch;
}
.stepper-container::-webkit-scrollbar {
    height: 6px;
}
.stepper-container::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

.stepper {
    display: flex;
    align-items: flex-start;
    min-width: max-content;
    padding: 0 10px;
}

.stepper-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    min-width: 100px;
    cursor: pointer;
    transition: transform 0.2s;
}
.stepper-step:hover {
    transform: translateY(-2px);
}

.stepper-step .step-connector {
    position: absolute;
    top: 18px;
    left: 50%;
    width: 100%;
    height: 3px;
    background: #dee2e6;
    z-index: 0;
}
.stepper-step:last-child .step-connector {
    display: none;
}
.stepper-step.completed .step-connector {
    background: #198754;
}
.stepper-step.current .step-connector {
    background: linear-gradient(to right, #0d6efd 50%, #dee2e6 50%);
}

.step-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    z-index: 1;
    transition: all 0.3s;
    border: 3px solid #dee2e6;
    background: white;
    color: #6c757d;
}
.stepper-step.completed .step-circle {
    background: #198754;
    border-color: #198754;
    color: white;
}
.stepper-step.current .step-circle {
    background: #0d6efd;
    border-color: #0d6efd;
    color: white;
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.25);
    animation: stepPulse 2s infinite;
}

@keyframes stepPulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.25); }
    50% { box-shadow: 0 0 0 8px rgba(13, 110, 253, 0.1); }
}

.step-label {
    margin-top: 8px;
    font-size: 0.7rem;
    text-align: center;
    max-width: 90px;
    color: #6c757d;
    line-height: 1.2;
    word-wrap: break-word;
}
.stepper-step.completed .step-label {
    color: #198754;
    font-weight: 600;
}
.stepper-step.current .step-label {
    color: #0d6efd;
    font-weight: 700;
}

/* --- Stats Cards --- */
.stat-card {
    text-align: center;
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}
.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.stat-card .stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 1.3rem;
}
.stat-card .stat-value {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
}
.stat-card .stat-label {
    font-size: 0.8rem;
    color: #6c757d;
}

/* Progress circle */
.progress-ring {
    width: 70px;
    height: 70px;
    margin: 0 auto 8px;
    position: relative;
}
.progress-ring svg {
    transform: rotate(-90deg);
}
.progress-ring .ring-bg {
    fill: none;
    stroke: #e9ecef;
    stroke-width: 6;
}
.progress-ring .ring-fill {
    fill: none;
    stroke: #198754;
    stroke-width: 6;
    stroke-linecap: round;
    transition: stroke-dashoffset 1s ease;
}
.progress-ring .ring-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1rem;
    font-weight: 700;
    color: #198754;
}

/* --- View Tabs --- */
.view-tabs {
    border-bottom: 2px solid #e9ecef;
    margin-bottom: 1.5rem;
}
.view-tabs .nav-link {
    border: none;
    border-bottom: 3px solid transparent;
    color: #6c757d;
    font-weight: 600;
    padding: 12px 20px;
    margin-bottom: -2px;
    transition: all 0.2s;
}
.view-tabs .nav-link:hover {
    color: #0d6efd;
    border-bottom-color: rgba(13, 110, 253, 0.3);
}
.view-tabs .nav-link.active {
    color: #0d6efd;
    border-bottom-color: #0d6efd;
    background: transparent;
}

/* --- Checklist Accordion --- */
.etape-accordion .accordion-item {
    border: 1px solid #e9ecef;
    border-radius: 10px !important;
    margin-bottom: 12px;
    overflow: hidden;
}
.etape-accordion .accordion-button {
    font-weight: 600;
    padding: 16px 20px;
    background: #f8f9fa;
}
.etape-accordion .accordion-button:not(.collapsed) {
    background: #e8f4fd;
    color: #0d6efd;
    box-shadow: none;
}
.etape-accordion .accordion-button .etape-progress {
    width: 120px;
    height: 8px;
    border-radius: 4px;
    margin-left: auto;
    margin-right: 15px;
}
.etape-accordion .accordion-button .etape-percent {
    font-size: 0.85rem;
    min-width: 45px;
    text-align: right;
}

.etape-accordion .accordion-item.is-current {
    border-color: #0d6efd;
    border-width: 2px;
}
.etape-accordion .accordion-item.is-current .accordion-button {
    background: #e8f4fd;
}
.etape-accordion .accordion-item.is-completed {
    border-color: #198754;
}
.etape-accordion .accordion-item.is-completed .accordion-button {
    background: #e8f8ee;
}

/* Checklist items */
.checklist-row {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.15s;
    gap: 12px;
}
.checklist-row:last-child {
    border-bottom: none;
}
.checklist-row:hover {
    background: #f8f9fa;
}
.checklist-row.is-done {
    opacity: 0.65;
}
.checklist-row.is-done .checklist-title {
    text-decoration: line-through;
}

.checklist-checkbox {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    border: 2px solid #ced4da;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
    background: white;
}
.checklist-checkbox:hover {
    border-color: #0d6efd;
    background: #e8f4fd;
}
.checklist-checkbox.checked {
    background: #198754;
    border-color: #198754;
    color: white;
}

.checklist-info {
    flex: 1;
    min-width: 0;
}
.checklist-title {
    font-weight: 500;
    font-size: 0.95rem;
    margin-bottom: 2px;
}
.checklist-desc {
    font-size: 0.8rem;
    color: #6c757d;
    margin: 0;
}
.checklist-meta {
    font-size: 0.75rem;
    color: #198754;
    margin-top: 4px;
}

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

.status-select {
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 6px;
    border: 1px solid #dee2e6;
    background: white;
    cursor: pointer;
}

.badge-obligatoire {
    font-size: 0.65rem;
    padding: 2px 6px;
    background: #dc3545;
    color: white;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Notes inline */
.checklist-notes {
    margin-top: 6px;
    padding: 6px 10px;
    background: #fff3cd;
    border-radius: 6px;
    font-size: 0.8rem;
    color: #664d03;
}
.notes-input {
    font-size: 0.8rem;
    border-radius: 6px;
    resize: none;
}

/* --- Kanban Board --- */
.kanban-board {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    min-height: 400px;
}

@media (max-width: 992px) {
    .kanban-board {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .kanban-board {
        grid-template-columns: 1fr;
    }
}

.kanban-column {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 12px;
    min-height: 300px;
}
.kanban-column-header {
    font-weight: 700;
    font-size: 0.85rem;
    padding: 8px 12px;
    border-radius: 8px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.kanban-column-header .count {
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 10px;
    background: rgba(0,0,0,0.1);
}

.kanban-column.col-todo .kanban-column-header { background: #e2e3e5; color: #41464b; }
.kanban-column.col-progress .kanban-column-header { background: #cfe2ff; color: #084298; }
.kanban-column.col-done .kanban-column-header { background: #d1e7dd; color: #0f5132; }
.kanban-column.col-blocked .kanban-column-header { background: #f8d7da; color: #842029; }

.kanban-card {
    background: white;
    border-radius: 8px;
    padding: 10px 12px;
    margin-bottom: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    border-left: 3px solid transparent;
    transition: box-shadow 0.2s;
    cursor: default;
}
.kanban-card:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.kanban-card .card-step {
    font-size: 0.65rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}
.kanban-card .card-title-text {
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 4px;
}

.kanban-column.col-todo .kanban-card { border-left-color: #6c757d; }
.kanban-column.col-progress .kanban-card { border-left-color: #0d6efd; }
.kanban-column.col-done .kanban-card { border-left-color: #198754; }
.kanban-column.col-blocked .kanban-card { border-left-color: #dc3545; }

/* --- Timeline (Historique) --- */
.timeline-container {
    position: relative;
    padding-left: 40px;
}
.timeline-container::before {
    content: '';
    position: absolute;
    left: 16px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #0d6efd, #dee2e6);
    border-radius: 2px;
}

.timeline-entry {
    position: relative;
    padding-bottom: 24px;
}
.timeline-entry:last-child {
    padding-bottom: 0;
}
.timeline-entry .timeline-dot {
    position: absolute;
    left: -30px;
    top: 4px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #0d6efd;
    border: 3px solid white;
    box-shadow: 0 0 0 2px #0d6efd;
}
.timeline-entry .timeline-content {
    background: white;
    border-radius: 8px;
    padding: 12px 16px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    border: 1px solid #e9ecef;
}
.timeline-entry .timeline-date {
    font-size: 0.75rem;
    color: #6c757d;
}
.timeline-entry .timeline-user {
    font-weight: 600;
    color: #212529;
}

/* --- Alerts Section --- */
.alert-deadline {
    border-left: 4px solid #ffc107;
    background: #fff8e1;
    border-radius: 0 8px 8px 0;
}
.alert-overdue {
    border-left: 4px solid #dc3545;
    background: #fff5f5;
    border-radius: 0 8px 8px 0;
}

/* --- Header Actions --- */
.page-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 1.5rem;
}
.page-header h1 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.page-header .manuscript-title {
    color: #6c757d;
    font-size: 1rem;
}
.header-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

/* --- Step Change Section --- */
.step-change-bar {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 12px;
    padding: 16px 24px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.step-change-bar .current-step-info {
    display: flex;
    align-items: center;
    gap: 12px;
}
.step-change-bar .step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
}
.step-change-bar .step-name {
    font-weight: 600;
    font-size: 1.1rem;
}
.step-change-bar .step-nav-buttons {
    display: flex;
    gap: 8px;
}

/* --- Loading / Spinner --- */
.spinner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border-radius: inherit;
    display: none;
}
.is-loading .spinner-overlay {
    display: flex;
}

/* --- Toast Notification --- */
.toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

/* --- Print Styles --- */
@media print {
    .suivi-page { padding-top: 0; }
    .header-actions,
    .step-change-bar .step-nav-buttons,
    .checklist-actions,
    .view-tabs,
    nav, footer,
    .btn { display: none !important; }

    .kanban-board { display: none !important; }

    .accordion-collapse { display: block !important; height: auto !important; }
    .accordion-button::after { display: none; }

    .stat-card { box-shadow: none; border: 1px solid #dee2e6; }

    .stepper-step.current .step-circle { box-shadow: none; animation: none; }

    body { font-size: 12px; }
    h1 { font-size: 1.3rem; }
}

/* ============================================================
 * SOURCE: pages/manuscripts.css
 * ============================================================ */
/* 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;
}
