/* Custom styles for Voice Upload Service */

body {
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Drop zone styles */
.drop-zone {
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.drop-zone:hover {
    border-color: #0d6efd;
    background-color: #e7f1ff;
}

.drop-zone.dragover {
    border-color: #0d6efd;
    background-color: #e7f1ff;
    transform: scale(1.02);
}

.border-dashed {
    border-style: dashed !important;
}

/* Card styles */
.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.card-header {
    background: linear-gradient(135deg, #0d6efd 0%, #6610f2 100%);
    color: white;
    border-radius: 12px 12px 0 0 !important;
    border: none;
    font-weight: 600;
}

/* Progress bar animation */
.progress-bar {
    transition: width 0.6s ease;
}

/* Status badges */
.status-badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-weight: 500;
}

.status-uploaded {
    background-color: #e3f2fd;
    color: #1565c0;
}

.status-processing {
    background-color: #fff3e0;
    color: #ef6c00;
}

.status-completed {
    background-color: #e8f5e8;
    color: #2e7d32;
}

.status-failed {
    background-color: #ffebee;
    color: #c62828;
}

/* Job list styles */
.job-item {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    background: white;
    transition: all 0.3s ease;
}

.job-item:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.job-header {
    display: flex;
    justify-content: between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.job-info {
    flex: 1;
}

.job-actions {
    flex-shrink: 0;
}

.file-size {
    color: #6c757d;
    font-size: 0.875rem;
}

.job-timestamp {
    color: #6c757d;
    font-size: 0.75rem;
}

/* Progress styles */
.progress-sm {
    height: 4px;
}

.progress-wrapper {
    margin: 0.5rem 0;
}

.progress-label {
    font-size: 0.75rem;
    color: #6c757d;
    margin-bottom: 0.25rem;
}

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

.fa-spin-custom {
    animation: spin 2s linear infinite;
}

/* Button styles */
.btn {
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

/* Login form styles */
#loginSection .card {
    max-width: 400px;
    margin: 2rem auto;
}

/* Statistics card styles */
.card.bg-info,
.card.bg-warning,
.card.bg-success,
.card.bg-danger {
    border: none;
    color: white !important;
}

.card.bg-info .card-body,
.card.bg-warning .card-body,
.card.bg-success .card-body,
.card.bg-danger .card-body {
    border-radius: 12px;
}

/* Toast styles */
.toast {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.toast-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px 12px 0 0;
}

/* Modal styles */
.modal-content {
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.modal-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px 12px 0 0;
}

/* File list styles */
.file-list {
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    padding: 0.5rem;
    background: #f8f9fa;
}

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

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

.file-name {
    font-size: 0.875rem;
    flex: 1;
}

.file-status {
    font-size: 0.75rem;
    margin-left: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .job-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .job-actions {
        margin-top: 0.5rem;
        width: 100%;
    }
    
    .drop-zone {
        min-height: 150px;
        padding: 2rem 1rem;
    }
    
    .drop-zone i {
        font-size: 2rem !important;
    }
}

/* Loading states */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

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

/* Error states */
.error-text {
    color: #dc3545;
    font-size: 0.875rem;
}

.success-text {
    color: #198754;
    font-size: 0.875rem;
}

/* Utility classes */
.text-truncate-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cursor-pointer {
    cursor: pointer;
}

.border-start-primary {
    border-left: 4px solid #0d6efd !important;
}

/* Upload modal styles */
.upload-option {
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.upload-option:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-color: #0d6efd;
}

.upload-option.selected {
    border-color: #0d6efd;
    background-color: #e7f1ff;
}

.upload-option .card-body {
    padding: 1.5rem;
}

.upload-option i {
    transition: all 0.3s ease;
}

.upload-option:hover i {
    transform: scale(1.1);
}

/* File selection area styles */
#fileSelectionArea .drop-zone {
    min-height: 120px;
}

#selectedFiles .list-group-item {
    border: none;
    padding: 0.5rem 0;
    background: transparent;
    border-bottom: 1px solid #e9ecef;
}

#selectedFiles .list-group-item:last-child {
    border-bottom: none;
}

.file-item-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.file-name {
    font-weight: 500;
    color: #495057;
}

.file-size {
    font-size: 0.875rem;
    color: #6c757d;
}

.file-remove {
    color: #dc3545;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.file-remove:hover {
    background-color: #f8d7da;
}

/* Upload progress enhancements */
#uploadProgress .progress {
    height: 8px;
    border-radius: 4px;
}

#fileProgress {
    max-height: 100px;
    overflow-y: auto;
    padding: 0.5rem;
    background-color: #f8f9fa;
    border-radius: 4px;
    margin-top: 0.5rem;
}

/* Modal size adjustments */
.modal-lg {
    max-width: 800px;
}

/* Upload type indicators */
.upload-type-single i { color: #0d6efd; }
.upload-type-multiple i { color: #198754; }
.upload-type-archive i { color: #ffc107; }
.upload-type-directory i { color: #0dcaf0; }

/* ================================
   ENHANCED JOB-SPECIFIC UI STYLES
   ================================ */

/* Modern Job Cards */
.job-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.job-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}

.job-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0d6efd, #6610f2);
}

/* Job Status Indicators */
.job-status-indicator {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.025em;
    text-transform: uppercase;
    position: relative;
}

.job-status-indicator::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 0.5rem;
    animation: pulse 2s infinite;
}

.status-uploaded {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    color: #1565c0;
}
.status-uploaded::before { background: #2196f3; }

.status-ready_for_processing {
    background: linear-gradient(135deg, #f3e5f5, #e1bee7);
    color: #7b1fa2;
}
.status-ready_for_processing::before { background: #9c27b0; }

.status-processing {
    background: linear-gradient(135deg, #fff3e0, #ffcc02);
    color: #ef6c00;
}
.status-processing::before { 
    background: #ff9800; 
    animation: pulse 1s infinite;
}

.status-completed {
    background: linear-gradient(135deg, #e8f5e8, #c8e6c9);
    color: #2e7d32;
}
.status-completed::before { background: #4caf50; }

.status-completed_with_errors {
    background: linear-gradient(135deg, #fff3e0, #ffcc02);
    color: #f57c00;
}
.status-completed_with_errors::before { background: #ff9800; }

.status-failed {
    background: linear-gradient(135deg, #ffebee, #ffcdd2);
    color: #c62828;
}
.status-failed::before { background: #f44336; }

/* Progress Rings */
.progress-ring {
    width: 60px;
    height: 60px;
    position: relative;
}

.progress-ring svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.progress-ring circle {
    fill: none;
    stroke-width: 4;
    stroke-linecap: round;
}

.progress-ring .bg-circle {
    stroke: #e9ecef;
}

.progress-ring .progress-circle {
    stroke: #0d6efd;
    stroke-dasharray: 0 251.2;
    transition: stroke-dasharray 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-ring .progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.75rem;
    font-weight: 700;
    color: #495057;
}

/* Job Metrics */
.job-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
}

.job-metric {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.job-metric::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0d6efd, #6610f2);
}

.job-metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 0.25rem;
}

.job-metric-label {
    font-size: 0.75rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Enhanced Job Actions */
.job-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.job-action-btn {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border: none;
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.job-action-btn:hover {
    transform: translateY(-1px);
}

.job-action-primary {
    background: linear-gradient(135deg, #0d6efd, #0056b3);
    color: white;
}

.job-action-secondary {
    background: #f8f9fa;
    color: #495057;
    border: 1px solid #dee2e6;
}

.job-action-success {
    background: linear-gradient(135deg, #198754, #146c43);
    color: white;
}

.job-action-warning {
    background: linear-gradient(135deg, #ffc107, #ffb300);
    color: #212529;
}

.job-action-danger {
    background: linear-gradient(135deg, #dc3545, #b02a37);
    color: white;
}

/* File Progress Bars */
.file-progress-container {
    margin: 1rem 0;
}

.file-progress-bar {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 0.5rem;
    border: 1px solid #e9ecef;
}

.file-progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.file-progress-name {
    font-weight: 500;
    color: #495057;
    font-size: 0.875rem;
}

.file-progress-status {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-weight: 500;
}

.file-progress-bar .progress {
    height: 6px;
    border-radius: 3px;
    background: #e9ecef;
}

.file-progress-bar .progress-bar {
    background: linear-gradient(90deg, #0d6efd, #6610f2);
    transition: width 0.6s ease;
}

/* Current Processing Indicator */
.current-processing {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    border: 2px solid #2196f3;
    border-radius: 16px;
    padding: 1.5rem;
    margin: 1rem 0;
    position: relative;
    overflow: hidden;
}

.current-processing::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 2s infinite;
}

.current-processing-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.current-processing-icon {
    width: 40px;
    height: 40px;
    background: #2196f3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 1rem;
    animation: pulse 2s infinite;
}

.current-processing-details h6 {
    margin: 0;
    color: #1565c0;
    font-weight: 600;
}

.current-processing-details .small {
    color: #1976d2;
    margin: 0;
}

/* Enhanced Modal Styles */
.modal-xl {
    max-width: 1200px;
}

.modal-content {
    border: none;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.modal-header {
    background: linear-gradient(135deg, #0d6efd, #6610f2);
    color: white;
    border-radius: 20px 20px 0 0;
    padding: 1.5rem 2rem;
}

.modal-body {
    padding: 2rem;
}

.modal-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* Tab Navigation */
.nav-tabs {
    border: none;
    margin-bottom: 2rem;
}

.nav-tabs .nav-link {
    border: none;
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
    color: #6c757d;
    font-weight: 500;
    margin-right: 0.5rem;
    transition: all 0.3s ease;
}

.nav-tabs .nav-link:hover {
    color: #0d6efd;
    background: #f8f9fa;
}

.nav-tabs .nav-link.active {
    background: linear-gradient(135deg, #0d6efd, #6610f2);
    color: white;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
}

/* File Table Enhancements */
.file-table {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.file-table th {
    background: #f8f9fa;
    border: none;
    padding: 1rem;
    font-weight: 600;
    color: #495057;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.file-table td {
    border: none;
    padding: 1rem;
    vertical-align: middle;
    border-bottom: 1px solid #f8f9fa;
}

.file-table tbody tr:hover {
    background: #f8f9fa;
}

/* Timeline Styles */
.processing-timeline {
    position: relative;
    padding-left: 2rem;
}

.processing-timeline::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #0d6efd, #6610f2);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -0.5rem;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #0d6efd;
    border: 3px solid white;
    box-shadow: 0 0 0 3px #e3f2fd;
}

.timeline-item.completed::before {
    background: #198754;
    box-shadow: 0 0 0 3px #d1eddb;
}

.timeline-item.failed::before {
    background: #dc3545;
    box-shadow: 0 0 0 3px #f5c2c7;
}

.timeline-content {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #e9ecef;
}

.timeline-time {
    font-size: 0.75rem;
    color: #6c757d;
    margin-bottom: 0.5rem;
}

.timeline-title {
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.5rem;
}

.timeline-description {
    color: #6c757d;
    font-size: 0.875rem;
}

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

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease;
}

/* Real-time Update Indicators */
.updating {
    position: relative;
    overflow: hidden;
}

.updating::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(13, 110, 253, 0.1), transparent);
    animation: shimmer 1.5s infinite;
}

/* Queue Status Indicators */
.queue-indicator {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
}

.queue-indicator.processing {
    background: linear-gradient(135deg, #fff3e0, #ffcc02);
    color: #ef6c00;
    border-color: #ffb300;
}

.queue-indicator.idle {
    background: linear-gradient(135deg, #e8f5e8, #c8e6c9);
    color: #2e7d32;
    border-color: #81c784;
}

/* Responsive Enhancements */
@media (max-width: 992px) {
    .job-metrics {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .modal-body {
        padding: 1rem;
    }
    
    .job-card {
        padding: 1rem;
    }
}

@media (max-width: 768px) {
    .job-metrics {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .job-actions {
        flex-direction: column;
        gap: 0.25rem;
        width: 100%;
    }
    
    .job-action-btn {
        width: 100%;
        justify-content: center;
    }
    
    .nav-tabs .nav-link {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
}

/* Parallel Processing Styles */
.parallel-indicator {
    animation: fadeInUp 0.6s ease;
    border-left: 3px solid #0dcaf0;
}

.parallel-worker-item {
    background: rgba(13, 202, 240, 0.1);
    border-radius: 8px;
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    border-left: 3px solid #0dcaf0;
    transition: all 0.3s ease;
}

.parallel-worker-item:hover {
    background: rgba(13, 202, 240, 0.2);
    transform: translateX(2px);
}

.worker-status-active {
    color: #0dcaf0;
    animation: pulse 2s infinite;
}

.worker-progress-ring {
    width: 24px;
    height: 24px;
    position: relative;
}

.worker-progress-ring svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.worker-progress-ring circle {
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
}

.worker-progress-ring .bg-circle {
    stroke: #e9ecef;
}

.worker-progress-ring .progress-circle {
    stroke: #0dcaf0;
    stroke-dasharray: 0 75.4;
    transition: stroke-dasharray 0.5s ease;
}

/* Processing Mode Indicators */
.processing-mode-parallel {
    background: linear-gradient(135deg, #0dcaf0, #0aa2c0);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.processing-mode-sequential {
    background: linear-gradient(135deg, #6c757d, #495057);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Worker Activity Animation */
@keyframes workerPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

.worker-active {
    animation: workerPulse 2s infinite;
}

/* Parallel Processing Statistics */
.parallel-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 1rem 0;
}

.parallel-stat {
    text-align: center;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-top: 3px solid #0dcaf0;
}

.parallel-stat-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0dcaf0;
    margin-bottom: 0.25rem;
}

.parallel-stat-label {
    font-size: 0.75rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Enhanced Processing Cards */
.processing-card-parallel {
    border-left: 4px solid #0dcaf0;
    background: linear-gradient(135deg, rgba(13, 202, 240, 0.05), rgba(13, 202, 240, 0.02));
}

.processing-card-sequential {
    border-left: 4px solid #6c757d;
    background: linear-gradient(135deg, rgba(108, 117, 125, 0.05), rgba(108, 117, 125, 0.02));
}

/* Worker Progress Visualization */
.worker-timeline {
    position: relative;
    padding-left: 1.5rem;
}

.worker-timeline::before {
    content: '';
    position: absolute;
    left: 0.75rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #0dcaf0, transparent);
}

.worker-timeline-item {
    position: relative;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.worker-timeline-item::before {
    content: '';
    position: absolute;
    left: -0.25rem;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #0dcaf0;
    border: 2px solid white;
    box-shadow: 0 0 0 2px rgba(13, 202, 240, 0.3);
}

.worker-timeline-item.active::before {
    animation: pulse 1s infinite;
}

/* Responsive Parallel Processing */
@media (max-width: 768px) {
    .parallel-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .parallel-worker-item {
        padding: 0.5rem;
    }
    
    .processing-mode-parallel,
    .processing-mode-sequential {
        font-size: 0.65rem;
        padding: 0.2rem 0.5rem;
    }
}

