/* ===== CASE PAGE STYLES ===== */

/* ===== PAGE BACKGROUND ===== */
#content {
    background: rgba(237, 106, 90, 0.05);
    min-height: 100vh;
}

/* ===== HEADER LINKS ===== */
#header .nav-link {
    color: #51596C;
}

#header .nav-link:hover {
    color: #1e2022;
}

.header-icon-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    color: #51596C;
    transition: all 0.2s ease;
}

.header-icon-btn:hover {
    border-color: #51596C;
    background: #f9fafb;
    color: #1e2022;
}

.header-icon-btn-primary {
    border-color: var(--bs-primary);
    color: var(--bs-primary);
}

.header-icon-btn-primary:hover {
    background: var(--bs-primary);
    color: white;
}

/* ===== CASE HEADER ===== */
.case-header {
    background: var(--bs-white);
    border-radius: 0.5rem;
    padding: 28px 32px;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
    margin-bottom: 24px;
}

.case-header-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 16px;
    flex-direction: column;
    gap: 12px;
}

@media (min-width: 576px) {
    .case-header-top {
        flex-direction: row;
        gap: 0;
    }
}

.case-label {
    font-size: 0.8125rem;
    color: var(--bs-gray-600);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.case-label code {
    text-transform: none;
    letter-spacing: 0;
}

.case-id {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bs-dark);
}

.case-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8125rem;
    font-weight: 600;
}

.badge-pending {
    background: rgba(255, 193, 7, 0.1);
    color: #856404;
}

.badge-pending .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--bs-warning);
    animation: pulse-dot-badge 2s infinite;
}

.badge-warning {
    background: rgba(255, 152, 0, 0.12);
    color: #7a4500;
}

.badge-warning .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff9800;
    animation: pulse-dot-badge 2s infinite;
}

.badge-danger {
    background: rgba(220, 53, 69, 0.1);
    color: #842029;
}

.badge-danger .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--bs-danger);
    animation: pulse-dot-badge 2s infinite;
}

.badge-success {
    background: rgba(25, 135, 84, 0.1);
    color: #0a3622;
}

.badge-secondary {
    background: rgba(108, 117, 125, 0.1);
    color: #41464b;
}

@keyframes pulse-dot-badge {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.case-summary {
    font-size: 0.9375rem;
    color: var(--bs-gray-700);
    margin-bottom: 16px;
    line-height: 1.6;
}

#caseMaterials,
#settlementWizard {
    scroll-margin-top: 80px;
}

.case-meta-row {
    display: flex;
    column-gap: 32px;
    row-gap: 12px;
    flex-wrap: wrap;
}

.case-meta-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.meta-label {
    font-size: 0.75rem;
    color: var(--bs-gray-600);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    font-weight: 500;
}

.meta-value {
    font-size: 0.875rem;
    color: var(--bs-gray-700);
    font-weight: 500;
}

/* ===== DEADLINE BANNER ===== */
.deadline-banner {
    background: linear-gradient(135deg, #fef3e2 0%, #fff8ee 100%);
    border: 1px solid #f5d89a;
    border-radius: 10px;
    padding: 16px 24px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-direction: column;
    text-align: center;
}

@media (min-width: 768px) {
    .deadline-banner {
        flex-direction: row;
        text-align: left;
    }
}

.deadline-icon {
    width: 44px;
    height: 44px;
    background: #f0a030;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.deadline-content {
    flex: 1;
}

.deadline-title {
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--bs-dark);
    margin-bottom: 2px;
}

.deadline-text {
    font-size: 0.8125rem;
    color: var(--bs-gray-600);
}

.deadline-timer {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.deadline-cta {
    flex-shrink: 0;
    white-space: nowrap;
    font-size: 0.9375rem;
    padding: 10px 20px;
}

@media (max-width: 767px) {
    .deadline-cta {
        width: 100%;
        margin-top: 8px;
    }
}

/* Варианты баннера по этапу */
.deadline-banner-pretrial {
    background: linear-gradient(135deg, #fef3e2 0%, #fff8ee 100%);
    border-color: #f5d89a;
}

.deadline-banner-claim {
    background: linear-gradient(135deg, #fff3e0 0%, #fff8f0 100%);
    border-color: #ffcc80;
}

.deadline-banner-claim .deadline-icon {
    background: #ff9800;
}

.deadline-banner-court {
    background: linear-gradient(135deg, #fdecea 0%, #fff5f5 100%);
    border-color: #f5c6cb;
}

.deadline-banner-court .deadline-icon {
    background: var(--bs-danger);
}

.deadline-banner-resolved {
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
    border-color: #a5d6a7;
}

.deadline-banner-resolved .deadline-icon {
    background: #198754;
}

/* ===== MOBILE STICKY BAR ===== */
.mobile-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid var(--bs-gray-300);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1030;
}

/* Скрываем sticky bar когда открыт модал (Bootstrap добавляет modal-open на body) */
body.modal-open .mobile-sticky-bar {
    display: none;
}

@media (max-width: 991.98px) {
    body {
        padding-bottom: 70px;
    }
}

/* ===== TIMELINE ===== */
.timeline {
    padding: 4px 0;
}

.timeline-item {
    display: flex;
    gap: 16px;
    padding-bottom: 24px;
    position: relative;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    width: 20px;
}

.timeline-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--bs-gray-300);
    background: var(--bs-white);
    z-index: 1;
    flex-shrink: 0;
}

.timeline-dot.done {
    background: var(--bs-primary);
    border-color: var(--bs-primary);
}

.timeline-dot.active {
    background: var(--bs-warning);
    border-color: var(--bs-warning);
    box-shadow: 0 0 0 4px rgba(255, 193, 7, 0.2);
    animation: pulse-dot 2s infinite;
}

.timeline-dot.future {
    background: var(--bs-white);
    border-color: var(--bs-gray-300);
}

.timeline-dot.timeline-dot-success {
    background: #198754;
    border-color: #198754;
}

.timeline-item-last .timeline-line {
    display: none;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.timeline-line {
    width: 2px;
    flex: 1;
    background: var(--bs-gray-300);
    margin-top: 4px;
}

.timeline-line.done {
    background: var(--bs-primary);
}

.timeline-content {
    flex: 1;
    padding-top: 0;
}

.timeline-date {
    font-size: 0.875rem;
    color: var(--bs-gray-600);
    font-weight: 500;
    margin-bottom: 2px;
}

.timeline-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--bs-dark);
    margin-bottom: 2px;
}

.timeline-desc {
    font-size: 0.875rem;
    color: var(--bs-gray-600);
    line-height: 1.5;
}

/* ===== EVIDENCE BLOCK ===== */
.evidence-item {
    border: 1px solid var(--bs-gray-300);
    border-radius: 10px;
    overflow: hidden;
}

.evidence-item-label {
    padding: 8px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.evidence-item-label.original {
    background: rgba(13, 110, 253, 0.1);
    color: var(--bs-primary);
}

.evidence-item-label.violation {
    background: rgba(220, 53, 69, 0.1);
    color: var(--bs-danger);
}

.evidence-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    background: var(--bs-gray-100);
}

/* ===== INFO GRID ===== */
.info-row {
    padding: 10px 0;
    border-bottom: 1px solid var(--bs-gray-200);
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    font-size: 0.75rem;
    color: var(--bs-gray-600);
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    font-weight: 500;
}

.info-value {
    font-size: 0.875rem;
    color: var(--bs-gray-700);
    font-weight: 500;
    word-break: break-word;
}

/* ===== COEFFICIENT TABLE ===== */
.coeff-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.coeff-table th {
    text-align: left;
    padding: 10px 12px;
    background: var(--bs-gray-100);
    color: var(--bs-gray-600);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.coeff-table td {
    padding: 10px 12px;
    border-bottom: 1px solid var(--bs-gray-200);
    vertical-align: top;
}

.coeff-table tr:last-child td {
    border-bottom: none;
}

.coeff-active {
    background: rgba(255, 193, 7, 0.1);
    font-weight: 600;
    color: #856404;
    border-radius: 4px;
}

.coeff-value {
    font-weight: 700;
    color: var(--bs-dark);
    text-align: right;
}

.coeff-section-header td {
    background: var(--bs-gray-100);
    font-weight: 700;
    color: var(--bs-dark);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.coeff-subtotal td {
    background: rgba(13, 110, 253, 0.1);
    font-weight: 700;
}

/* ===== DEADLINE TIMER ===== */
.timer-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--bs-white);
    border-radius: 8px;
    padding: 8px 12px;
    min-width: 52px;
    box-shadow: 0 1px 3px rgba(0,0,0,.06);
}

.timer-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bs-dark);
    line-height: 1;
}

.timer-label {
    font-size: 0.625rem;
    color: var(--bs-gray-600);
    text-transform: uppercase;
    margin-top: 2px;
}

/* ===== DOC ITEM ===== */
.doc-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border: 1px solid var(--bs-gray-300);
    border-radius: 10px;
    margin-bottom: 10px;
    transition: border-color .15s, box-shadow .15s;
}

.doc-item:hover {
    border-color: var(--bs-primary);
    box-shadow: 0 2px 8px rgba(13, 110, 253, 0.08);
}

.doc-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.doc-icon.pdf {
    background: rgba(220, 53, 69, 0.1);
    color: var(--bs-danger);
}

.doc-icon.link {
    background: rgba(13, 110, 253, 0.1);
    color: var(--bs-primary);
}

.doc-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--bs-dark);
}

.doc-description {
    font-size: 0.75rem;
    color: var(--bs-gray-600);
    margin-top: 2px;
    line-height: 1.4;
}

/* ===== COURT STATS ===== */
.court-stat {
    padding: 16px;
    background: var(--bs-white);
    text-align: center;
    border: 1px solid var(--bs-gray-200);
    border-radius: 8px;
}

.court-stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bs-dark);
}

.court-stat-label {
    font-size: 0.75rem;
    color: var(--bs-gray-600);
    margin-top: 2px;
}

/* ===== PATH NUMBER BADGE ===== */
.path-number-badge {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
}

/* ===== STICKY SIDEBAR ===== */
.sticky-sidebar {
    position: sticky;
    top: 88px;
}

/* ===== COMPENSATION TOTAL ===== */
.compensation-total {
    white-space: nowrap;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .evidence-img {
        height: 140px;
    }
    .timer-unit {
        min-width: 48px;
        padding: 6px 10px;
    }
    .timer-number {
        font-size: 1.25rem;
    }
}

@media (max-width: 576px) {
    .compensation-total {
        font-size: 1.25rem !important;
    }
}

/* ===== AUTHORSHIP PROOF ===== */
.authorship-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.authorship-proof {
    border-left: 3px solid var(--bs-primary);
}

/* ===== MATERIAL ITEMS (блок нескольких РИД) ===== */
.material-item .info-row {
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.material-item .info-label {
    color: var(--bs-secondary);
    font-size: 0.8125rem;
    flex-shrink: 0;
}

.material-item .info-value {
    text-align: right;
    font-size: 0.8125rem;
}

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

/* ===== SETTLEMENT BUTTON ===== */
.btn-settle-primary {
    padding: 16px 28px;
    font-size: 16px;
    font-weight: 600;
}

/* ===== COMPARISON CARDS ===== */
.comparison-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    height: 100%;
}

.comparison-card-header {
    padding: 16px 20px;
    font-weight: 600;
    font-size: 1.125rem;
    display: flex;
    align-items: center;
}

.comparison-card-good .comparison-card-header {
    background: rgba(25, 135, 84, 0.1);
    color: #198754;
}

.comparison-card-bad .comparison-card-header {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.comparison-card-body {
    padding: 20px;
}

.comparison-item {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.comparison-item-label {
    font-size: 0.875rem;
    color: var(--bs-gray-600);
    margin-bottom: 4px;
    font-weight: 500;
}

.comparison-item-value {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--bs-dark);
}

.comparison-item-desc {
    font-size: 0.8125rem;
    color: var(--bs-gray-600);
    margin-top: 2px;
}

.comparison-item-total {
    background: rgba(0,0,0,0.02);
    margin: 8px -20px;
    padding: 16px 20px;
    border: none;
}

.comparison-item-value-big {
    font-size: 1.75rem;
    font-weight: 700;
}

/* ===== STATISTICS ===== */
.court-statistics {
    background: white;
    padding: 20px;
    border-radius: 12px;
}

.stat-card {
    background: var(--bs-white);
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid var(--bs-gray-200);
    border-left: 3px solid var(--bs-primary);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.stat-value {
    font-size: 1.375rem;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

.stat-label {
    font-size: 0.8125rem;
    color: var(--bs-gray-600);
    font-weight: 500;
}

/* ===== CASE ITEMS ===== */
.case-item {
    background: white;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 12px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    transition: all 0.2s ease;
}

.case-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.case-number {
    font-weight: 600;
    color: var(--bs-primary);
    text-decoration: none;
    font-size: 0.9375rem;
}

.case-number:hover {
    text-decoration: underline;
}

.case-compensation {
    font-weight: 600;
    color: var(--bs-dark);
    font-size: 1rem;
    white-space: nowrap;
}

.case-breakdown {
    font-size: 0.75rem;
    color: var(--bs-secondary);
    display: flex;
    flex-wrap: wrap;
    gap: 0 4px;
}

@media (max-width: 767px) {
    .comparison-item-value-big {
        font-size: 1.5rem;
    }

    .stat-value {
        font-size: 2rem;
    }

    .stat-card {
        padding: 20px 16px;
    }
}

/* ===== SETTLEMENT WIZARD ===== */
.wizard-progress {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 16px 12px 8px;
    position: relative;
}

.wizard-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 0 0 auto;
    position: relative;
    z-index: 1;
}

.wizard-step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8125rem;
    margin-bottom: 4px;
    transition: all 0.3s ease;
}

.wizard-step-label {
    font-size: 0.6875rem;
    text-align: center;
    max-width: 64px;
    line-height: 1.2;
    font-weight: 500;
}

.wizard-step-done .wizard-step-number {
    background: var(--bs-primary);
    color: #fff;
}
.wizard-step-done .wizard-step-label {
    color: var(--bs-primary);
}

.wizard-step-active .wizard-step-number {
    background: var(--bs-primary);
    color: #fff;
    box-shadow: 0 0 0 4px rgba(0, 128, 96, 0.2);
}
.wizard-step-active .wizard-step-label {
    color: var(--bs-primary);
    font-weight: 600;
}

.wizard-step-future .wizard-step-number {
    background: var(--bs-gray-200);
    color: var(--bs-gray-600);
}
.wizard-step-future .wizard-step-label {
    color: var(--bs-gray-600);
}

.wizard-step-line {
    flex: 1;
    height: 2px;
    margin-top: 16px;
    min-width: 16px;
}

.wizard-line-done {
    background: var(--bs-primary);
}

.wizard-line-future {
    background: var(--bs-gray-300);
}

.wizard-body {
    padding: 20px;
}

.wizard-file-input {
    border: 2px dashed var(--bs-gray-300);
    border-radius: 8px;
    padding: 12px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s;
}

.wizard-file-input:hover {
    border-color: var(--bs-primary);
}

.wizard-file-input.has-file {
    border-color: var(--bs-success);
    background: rgba(25, 135, 84, 0.05);
}

.wizard-file-name {
    font-size: 0.8125rem;
    color: var(--bs-success);
    font-weight: 500;
    margin-top: 4px;
}

.wizard-status-block {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
}

.wizard-status-pending {
    background: rgba(255, 193, 7, 0.1);
    color: #856404;
}

.wizard-status-success {
    background: rgba(25, 135, 84, 0.1);
    color: #0a3622;
}

.wizard-status-rejected {
    background: rgba(220, 53, 69, 0.1);
    color: #842029;
}

@media (max-width: 576px) {
    .wizard-step-number {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }
    .wizard-step-label {
        font-size: 0.625rem;
        max-width: 56px;
    }
    .wizard-step-line {
        margin-top: 14px;
    }
    .wizard-body {
        padding: 16px;
    }
}

/* ====================================================================
   Negotiation: flat-секции, форма снижения, результаты
   ==================================================================== */

/* Акцентная секция (зелёная полоса слева) */
.wizard-accent-section {
    border-left: 4px solid var(--bs-primary);
    padding-left: 16px;
}

/* Ценовая строка */
.negotiate-price-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 8px;
}
.negotiate-price-main {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bs-primary);
}
.negotiate-price-old {
    font-size: 0.875rem;
    color: var(--bs-secondary);
    text-decoration: line-through;
}
.negotiate-discount-tag {
    display: inline-block;
    background: var(--bs-primary);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    white-space: nowrap;
}

/* Социальное доказательство */
.negotiate-social-proof {
    text-align: center;
    font-size: 0.75rem;
    color: var(--bs-secondary);
    opacity: 0.8;
}

/* Разделитель между секциями */
.wizard-separator {
    border-color: var(--bs-gray-300);
    opacity: 0.5;
    margin: 4px 0 16px;
}

/* Форма запроса снижения */
.negotiate-reasons {
    background: var(--bs-gray-100);
    border-radius: 8px;
    padding: 12px 14px 4px;
}
.negotiate-reasons .form-check-label {
    cursor: pointer;
}

#negotiateAmount {
    font-size: 1.125rem;
    font-weight: 600;
}

/* Блок результата */
.negotiate-result-block {
    padding: 8px 0;
}
.negotiate-spinner {
    display: inline-block;
}

/* Анимация появления */
@keyframes fadeInNeg {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}
.animate-fade-in {
    animation: fadeInNeg 0.4s ease-out;
}

@media (max-width: 576px) {
    .negotiate-price-main {
        font-size: 1.25rem;
    }
}

/* ===== MESSAGE FILE LIST ===== */
.message-file-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.message-file-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: var(--bs-gray-100);
    border: 1px solid var(--bs-gray-300);
    border-radius: 6px;
    font-size: 0.8125rem;
    color: var(--bs-gray-700);
    max-width: 100%;
}

.message-file-item .file-name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.message-file-item .btn-remove-file {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: var(--bs-gray-600);
    font-size: 1rem;
    line-height: 1;
}

.message-file-item .btn-remove-file:hover {
    color: var(--bs-danger);
}

/* ===== PAYMENT QR BLOCK ===== */
.payment-qr-block {
    background: var(--bs-gray-100);
    border-radius: 12px;
    padding: 16px;
}
.payment-requisites {
    font-family: monospace;
    font-size: 0.75rem;
    line-height: 1.6;
}

/* ===== LICENSE PREVIEW ===== */
.license-preview-img {
    max-height: 120px;
    max-width: 100%;
    border-radius: 6px;
    margin-top: 4px;
}

/* ===== UPLOAD PROGRESS ===== */
.upload-progress {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.upload-progress-bar {
    flex: 1;
    height: 6px;
    background: var(--bs-gray-300);
    border-radius: 3px;
    overflow: hidden;
}

.upload-progress-fill {
    height: 100%;
    width: 0;
    background: var(--bs-primary);
    border-radius: 3px;
    transition: width 0.2s ease;
}

.upload-progress-text {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--bs-gray-700);
    min-width: 36px;
    text-align: right;
}
