/* ===========================================
   CSS pour l'application de correction d'homélies
   =========================================== */

:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --success: #16a34a;
    --warning: #f59e0b;
    --danger: #dc2626;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --radius: 8px;
    --shadow: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--gray-50);
    color: var(--gray-900);
    line-height: 1.6;
}

/* === NAVBAR === */
.navbar {
    background: white;
    border-bottom: 1px solid var(--gray-200);
    padding: 0.5rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand a {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    text-decoration: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-links a {
    color: var(--gray-600);
    text-decoration: none;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--primary);
}

.user-info {
    color: var(--gray-500);
    font-size: 0.875rem;
}

.btn-logout {
    color: var(--danger) !important;
}

/* === CONTAINER === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* === FLASH MESSAGES === */
.flash-messages {
    margin-bottom: 1.5rem;
}

.flash {
    padding: 1rem;
    border-radius: var(--radius);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.flash-success { background: #dcfce7; color: #166534; }
.flash-error { background: #fee2e2; color: #991b1b; }
.flash-warning { background: #fef3c7; color: #92400e; }
.flash-info { background: #dbeafe; color: #1e40af; }

.flash-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.7;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-secondary {
    background: var(--gray-100);
    color: var(--gray-700);
    border: 1px solid var(--gray-300);
}

.btn-secondary:hover {
    background: var(--gray-200);
}

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

.btn-danger:hover {
    background: #b91c1c;
}

.btn-block {
    width: 100%;
}

.btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
}

/* === LOGIN === */
.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.login-box {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.login-box h1 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.login-box .subtitle {
    color: var(--gray-500);
    margin-bottom: 2rem;
}

.login-form .form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.login-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--gray-700);
}

.login-form input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    font-size: 1rem;
}

.login-form input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* === PAGE HEADER === */
.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.page-header h1 {
    font-size: 1.75rem;
}

.stats {
    display: flex;
    gap: 1rem;
}

.stat {
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 500;
}

.stat-pending { background: #fee2e2; color: #991b1b; }
.stat-partial { background: #fef3c7; color: #92400e; }
.stat-validated { background: #dcfce7; color: #166534; }

/* === FILTERS COMPACT === */
.filters-compact {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
    padding: 0.25rem;
    background: var(--gray-100);
    border-radius: var(--radius);
}

.filter-btn {
    padding: 0.35rem 0.6rem;
    border: none;
    background: transparent;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.2s;
}

.filter-btn:hover {
    background: white;
}

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

/* === HOMELIES LIST COMPACT === */
.homelies-list-compact {
    display: flex;
    flex-direction: column;
}

.homelie-row {
    display: flex;
    align-items: center;
    padding: 0.6rem 0.75rem;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid var(--gray-100);
    gap: 0.75rem;
    transition: background 0.15s;
}

.homelie-row:hover {
    background: var(--gray-50);
}

.homelie-row.pending { border-left: 3px solid var(--danger); }
.homelie-row.in-progress { border-left: 3px solid var(--warning); }
.homelie-row.partial { border-left: 3px solid #3b82f6; }
.homelie-row.validated { border-left: 3px solid var(--success); }

.row-date {
    font-size: 0.8rem;
    color: var(--gray-500);
    min-width: 60px;
}

.row-title {
    flex: 1;
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.row-status {
    font-size: 0.7rem;
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    font-weight: 500;
    white-space: nowrap;
}

.status-pending { background: #fee2e2; color: #991b1b; }
.status-in-progress { background: #fef3c7; color: #92400e; }
.status-partial { background: #dbeafe; color: #1e40af; }
.status-validated { background: #dcfce7; color: #166534; }

/* === HELP PAGE === */
.help-page {
    max-width: 700px;
    margin: 0 auto;
}

.help-page h1 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.help-section {
    background: white;
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid var(--gray-200);
}

.help-section h2 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: var(--primary);
}

.help-section p,
.help-section li {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--gray-700);
}

.help-section ul,
.help-section ol {
    padding-left: 1.25rem;
    margin: 0.5rem 0;
}

.help-section li {
    margin-bottom: 0.4rem;
}

.help-section .status-badge {
    display: inline-block;
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-right: 0.5rem;
}

/* === CORRECTION PAGE === */
.correction-page {
    max-width: 900px;
    margin: 0 auto;
}

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

.back-link {
    color: var(--gray-500);
    text-decoration: none;
    font-size: 0.875rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.back-link:hover {
    color: var(--primary);
}

.correction-header h1 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.correction-header .meta {
    color: var(--gray-600);
}

.correction-header .lectures {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-top: 0.5rem;
}

/* === AUDIO PLAYER === */
.audio-player {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-bottom: 2rem;
    color: white;
}

.audio-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.audio-btn {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    cursor: pointer;
    font-size: 0.875rem;
    transition: background 0.2s;
}

.audio-btn:hover {
    background: rgba(255,255,255,0.3);
}

.audio-btn-play {
    padding: 0.75rem 1.5rem;
    font-size: 1.25rem;
}

.audio-progress {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 200px;
}

.audio-progress input[type="range"] {
    flex: 1;
    height: 6px;
    -webkit-appearance: none;
    background: rgba(255,255,255,0.3);
    border-radius: 3px;
}

.audio-progress input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
}

.audio-speed {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.audio-speed select {
    padding: 0.5rem;
    border-radius: var(--radius);
    border: none;
    background: rgba(255,255,255,0.2);
    color: white;
}

.audio-speed select option {
    color: black;
}

.audio-missing {
    background: var(--gray-100);
    padding: 1rem;
    border-radius: var(--radius);
    text-align: center;
    color: var(--gray-500);
    margin-bottom: 2rem;
}

/* === EDITOR === */
.editor-container {
    background: white;
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    margin-bottom: 2rem;
}

.editor-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.editor-header h2 {
    font-size: 1rem;
    font-weight: 600;
}

.editor-actions {
    display: flex;
    gap: 0.75rem;
}

.editor-textarea {
    width: 100%;
    min-height: 500px;
    padding: 1.5rem;
    border: none;
    font-size: 1rem;
    line-height: 1.8;
    resize: vertical;
    font-family: inherit;
}

.editor-textarea:focus {
    outline: none;
}

.editor-textarea[readonly] {
    background: var(--gray-50);
}

.badge {
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
}

.badge-success {
    background: #dcfce7;
    color: #166534;
}

/* === MESSAGE SECTION === */
.message-section {
    background: white;
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.message-section h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.message-section textarea {
    width: 100%;
    min-height: 100px;
    padding: 0.75rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    resize: vertical;
}

/* === HISTORY SECTION === */
.history-section,
.verifiers-section {
    background: white;
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.history-section h3,
.verifiers-section h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.correction-item {
    padding: 1rem;
    border-bottom: 1px solid var(--gray-100);
}

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

.correction-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.correction-meta .date {
    color: var(--gray-500);
    font-size: 0.875rem;
}

.diff-content {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: var(--radius);
}

.diff-content pre {
    white-space: pre-wrap;
    font-size: 0.875rem;
}

.verifiers-section ul {
    list-style: none;
}

.verifiers-section li {
    padding: 0.5rem 0;
    display: flex;
    gap: 1rem;
}

.verifiers-section .date {
    color: var(--gray-500);
    font-size: 0.875rem;
}

/* === ADMIN === */
.admin-page {
    max-width: 1200px;
    margin: 0 auto;
}

.admin-page h1 {
    margin-bottom: 2rem;
}

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

.stat-card {
    background: white;
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    border: 1px solid var(--gray-200);
}

.stat-card .stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
}

.stat-card .stat-label {
    color: var(--gray-500);
    font-size: 0.875rem;
}

.stat-card.stat-pending .stat-value { color: var(--danger); }
.stat-card.stat-partial .stat-value { color: var(--warning); }
.stat-card.stat-validated .stat-value { color: var(--success); }

.progress-bar-container {
    margin-bottom: 2rem;
}

.progress-bar {
    height: 12px;
    background: var(--gray-200);
    border-radius: 6px;
    overflow: hidden;
}

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

.progress-text {
    display: block;
    text-align: center;
    margin-top: 0.5rem;
    color: var(--gray-600);
    font-size: 0.875rem;
}

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

.admin-section {
    background: white;
    border-radius: var(--radius);
    padding: 1.5rem;
    border: 1px solid var(--gray-200);
}

.admin-section h2 {
    font-size: 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.admin-section .badge {
    background: var(--danger);
    color: white;
}

.messages-list .message-item {
    padding: 1rem;
    border-bottom: 1px solid var(--gray-100);
}

.message-header {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.message-content {
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.activity-list .activity-item {
    padding: 0.5rem 0;
    font-size: 0.875rem;
    border-bottom: 1px solid var(--gray-100);
}

.activity-item .user {
    font-weight: 500;
}

.activity-item .date {
    color: var(--gray-400);
    float: right;
}

.users-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.users-table th,
.users-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--gray-100);
}

.users-table th {
    font-weight: 600;
    color: var(--gray-500);
}

.users-section {
    grid-column: span 2;
}

.admin-actions {
    display: flex;
    gap: 1rem;
}

.empty-state {
    color: var(--gray-400);
    text-align: center;
    padding: 2rem;
}

/* === USERS PAGE === */
.user-form .form-row {
    display: flex;
    gap: 1rem;
    align-items: flex-end;
}

.user-form .form-group {
    flex: 1;
}

.role-badge {
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
}

.role-badge.role-admin { background: #dbeafe; color: #1e40af; }
.role-badge.role-correcteur { background: var(--gray-100); color: var(--gray-600); }

.muted {
    color: var(--gray-400);
    font-size: 0.875rem;
}

/* === MODAL === */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-content {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    width: 100%;
    max-width: 400px;
}

.modal-content h3 {
    margin-bottom: 1.5rem;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 1.5rem;
}

/* === EXPORT === */
.export-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.export-content {
    background: white;
    border-radius: var(--radius);
    padding: 2rem;
    border: 1px solid var(--gray-200);
}

.export-homelie {
    margin-bottom: 2rem;
}

.export-homelie h2 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.export-homelie .meta {
    color: var(--gray-500);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.export-homelie .homelie-text {
    white-space: pre-wrap;
    line-height: 1.8;
}

.export-homelie hr {
    margin-top: 2rem;
    border: none;
    border-top: 1px solid var(--gray-200);
}

.info {
    background: #dbeafe;
    color: #1e40af;
    padding: 1rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
}

/* === ACTIONS GRID === */
.actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.action-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    text-decoration: none;
    transition: all 0.2s;
}

.action-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.action-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.action-title {
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.action-desc {
    font-size: 0.75rem;
    color: var(--gray-500);
    text-align: center;
}

/* === REGISTER === */
.login-link {
    margin-top: 1.5rem;
    text-align: center;
    color: var(--gray-500);
    font-size: 0.875rem;
}

.login-link a {
    color: var(--primary);
}

.form-help {
    display: block;
    color: var(--gray-500);
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

/* === MINI AUDIO PLAYER (FLOATING) === */
.mini-player {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
}

.mini-player .mini-btn {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    padding: 0;
    box-sizing: border-box;
}

.mini-player .mini-btn:hover {
    background: rgba(255,255,255,0.3);
}

.mini-player .mini-btn-play {
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    font-size: 1.25rem;
    background: rgba(255,255,255,0.3);
}

.mini-player .mini-progress {
    flex: 1;
    max-width: 200px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mini-player .mini-progress input[type="range"] {
    flex: 1;
    height: 4px;
    -webkit-appearance: none;
    background: rgba(255,255,255,0.3);
    border-radius: 2px;
}

.mini-player .mini-progress input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
}

.mini-player .mini-time {
    color: rgba(255,255,255,0.8);
    font-size: 0.75rem;
    min-width: 40px;
}

.mini-player .mini-speed {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
}

.mini-player .mini-speed option {
    color: black;
}

/* Bouton sauvegarder dans le mini-player */
.mini-player .mini-btn-save {
    background: rgba(76, 175, 80, 0.8);
    font-size: 1.1rem;
}

.mini-player .mini-btn-save:hover {
    background: rgba(76, 175, 80, 1);
}

/* Notification de sauvegarde */
.save-status {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    z-index: 2000;
    animation: fadeInOut 3s ease-in-out;
}

.save-status-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.save-status-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.save-status-info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

@keyframes fadeInOut {
    0% { opacity: 0; transform: translateX(-50%) translateY(-10px); }
    10% { opacity: 1; transform: translateX(-50%) translateY(0); }
    90% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(-10px); }
}

/* Ajouter du padding en bas pour éviter que le contenu soit caché */
body.has-mini-player {
    padding-bottom: 70px;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .container {
        padding: 0.5rem;
    }

    .correction-page {
        padding: 0;
    }

    .editor-container {
        border-radius: 0;
        margin: 0 -0.5rem;
    }

    .editor-textarea {
        border-radius: 0;
    }

    .navbar {
        padding: 0.4rem 0.5rem;
    }

    .nav-brand {
        display: none;
    }

    .nav-links {
        gap: 0.75rem;
        font-size: 0.9rem;
    }

    .homelie-card {
        grid-template-columns: 60px 1fr;
        gap: 1rem;
    }

    .homelie-status,
    .homelie-actions {
        grid-column: 2;
    }

    .stats-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .admin-grid {
        grid-template-columns: 1fr;
    }

    .users-section {
        grid-column: 1;
    }

    .audio-controls {
        flex-direction: column;
        align-items: stretch;
    }

    /* Mini-lecteur mobile */
    .mini-player {
        padding: 0.5rem;
        gap: 0.25rem;
    }

    .mini-player .mini-btn {
        width: 36px;
        height: 36px;
        min-width: 36px;
        min-height: 36px;
        font-size: 0.85rem;
    }

    .mini-player .mini-btn-play {
        width: 42px;
        height: 42px;
        min-width: 42px;
        min-height: 42px;
    }

    .mini-player .mini-progress {
        max-width: 100px;
    }

    .mini-player .mini-time {
        font-size: 0.65rem;
        min-width: 32px;
    }

    .mini-player .mini-speed {
        padding: 0.15rem 0.25rem;
        font-size: 0.65rem;
    }

    .audio-progress {
        order: -1;
    }
}
