body {
    background: #f3f4f6 !important;
    font-family: 'Open Sans', sans-serif;
}

.request-page {
    max-width: 1280px;
    margin: 0 auto;
    padding: 30px 20px;
}

/* Стили для истекших запросов */
.expired-request {
    opacity: 0.9;
}

.expired-request .page-header,
.expired-request .meta-card,
.expired-request .main-content {
    background: #f9fafb !important;
    filter: grayscale(15%);
}

.expired-notice {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    padding: 24px 40px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
    display: flex;
    gap: 20px;
    align-items: center;
}

.expired-notice-icon {
    font-size: 48px;
    opacity: 0.9;
}

.expired-notice-content h3 {
    margin: 0 0 8px 0;
    font-size: 22px;
    font-weight: 700;
    font-family: 'Raleway', sans-serif;
}

.expired-notice-content p {
    margin: 0 0 16px 0;
    font-size: 15px;
    opacity: 0.95;
}

.btn-view-catalog {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: #dc2626;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-view-catalog:hover {
    background: #fef2f2;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.badge-expired {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.company-link {
    color: #14b8a6;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.company-link:hover {
    color: #0d9488;
    text-decoration: underline;
}

/* Белая шапка */
.page-header {
    background: white;
    padding: 35px 40px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.page-header-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.page-header h1 {
    font-family: 'Raleway', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.page-subtitle {
    color: #6b7280;
    font-size: 15px;
    margin-bottom: 20px;
}

.header-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-back {
    background: white;
    border: 2px solid #e5e7eb;
    color: #1f2937;
}

.btn-back:hover {
    border-color: #9ca3af;
    background: #f9fafb;
}

.btn-primary {
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(20, 184, 166, 0.4);
}

.btn i {
    font-size: 14px;
}

.btn-primary i {
    color: white !important;
}

/* Статус баджи */
.status-row {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 2px solid #f3f4f6;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.badge-success {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #065f46;
    border: 2px solid rgba(6, 95, 70, 0.2);
}

.badge-views {
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
    color: #3730a3;
    border: 2px solid rgba(55, 48, 163, 0.2);
}

.badge i {
    font-size: 14px;
}

.meta-info {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    color: #6b7280;
    font-size: 14px;
}

.meta-info-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.meta-info-item i {
    color: #9ca3af;
}

.meta-info-item strong {
    color: #1f2937;
    font-weight: 600;
}

/* Сетка информационных блоков */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin: 24px 0;
}

.info-item {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 16px;
}

.info-item-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.info-icon {
    color: #14b8a6;
    font-size: 16px;
}

.info-item-label {
    color: #6b7280;
    font-size: 13px;
    font-weight: 500;
}

.info-item-value {
    color: #1f2937;
    font-size: 15px;
    font-weight: 600;
}

/* Секция статуса */
.status-section {
    margin-bottom: 24px;
}

.status-badges {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.hidden-badge {
    background: #fef3c7;
    color: #92400e;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Заголовки секций */
.section-title {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title i {
    color: #14b8a6;
}

/* Блок описания */
.description-box {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 20px;
    color: #374151;
    line-height: 1.6;
}

/* Файлы */
.file-item {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
}

.file-item:hover {
    background: #f3f4f6;
    border-color: #14b8a6;
}

.file-info {
    display: flex;
    gap: 12px;
    align-items: center;
}

.file-icon {
    width: 40px;
    height: 40px;
    background: #14b8a6;
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.file-name {
    font-weight: 600;
    color: #1f2937;
    font-size: 14px;
}

.file-meta {
    font-size: 12px;
    color: #6b7280;
    margin-top: 4px;
}

/* Контактная информация */
.contact-box {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
    border-bottom: 1px solid #e5e7eb;
    color: #374151;
}

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

.contact-item i {
    color: #14b8a6;
    width: 20px;
    text-align: center;
}

.contact-item strong {
    color: #1f2937;
}

/* Блоки секций */
.section-block {
    margin-bottom: 20px;
}

.card-content {
    padding: 20px 24px;
}

.files-list {
    display: grid;
    gap: 10px;
}

/* Двухколоночный layout */
.content-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
}

/* Левая колонка - метаданные */
.meta-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.meta-card {
    background: white;
    padding: 28px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    border: 2px solid #f3f4f6;
    transition: all 0.3s ease;
}

.meta-card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.15);
    border-color: #14b8a6;
    transform: translateY(-2px);
}

.meta-card-title {
    font-weight: 800;
    font-size: 17px;
    color: #0c4a6e;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 15px;
    border-bottom: 3px solid #f3f4f6;
}

.meta-card-title i {
    color: #14b8a6;
    font-size: 20px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border-radius: 8px;
}

.meta-item {
    margin-bottom: 18px;
    padding: 12px;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.meta-item:hover {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-color: #14b8a6;
    transform: translateX(3px);
}

.meta-item:last-child {
    margin-bottom: 0;
}

.meta-label {
    color: #6b7280;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.meta-label i {
    width: 18px;
    text-align: center;
    color: #14b8a6;
    font-size: 14px;
}

.meta-value {
    color: #0c4a6e;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.5;
}

.meta-value a {
    color: #14b8a6;
    text-decoration: none;
    font-weight: 700;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    display: inline-block;
}

.meta-value a:hover {
    color: #0d9488;
    border-bottom-color: #14b8a6;
    transform: translateY(-1px);
}

/* Правая колонка - основной контент */
.main-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Голубая карточка компании */
.company-section {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border: 1px solid rgba(59, 130, 246, 0.2);
    padding: 35px 40px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.15);
}

.company-section-header {
    display: flex;
    gap: 24px;
    margin-bottom: 25px;
}

.company-icon {
    width: 90px;
    height: 90px;
    min-width: 90px;
    background: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #3b82f6;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.company-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 12px;
}

.company-header-info {
    flex: 1;
}

.company-details {
    flex: 1;
}

.company-name {
    font-family: 'Raleway', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #1e40af;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.status-verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 10px 18px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    margin: 0;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.25);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.status-verified-badge i {
    font-size: 14px;
}

.company-text {
    color: #1e40af;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 15px;
    background: rgba(255, 255, 255, 0.5);
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid #3b82f6;
}

.company-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    font-size: 14px;
}

.company-meta-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(255, 255, 255, 0.6);
    padding: 12px 15px;
    border-radius: 10px;
    color: #1e3a8a;
    transition: all 0.3s ease;
}

.company-meta-item:hover {
    background: rgba(255, 255, 255, 0.85);
    transform: translateX(3px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.company-meta-item i {
    color: #3b82f6;
    font-size: 16px;
    min-width: 20px;
    margin-top: 2px;
}

.company-meta-item strong {
    font-weight: 600;
    margin-right: 4px;
}

.company-meta-item a {
    color: #1e40af;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px dashed #3b82f6;
    transition: all 0.3s ease;
}

.company-meta-item a:hover {
    color: #3b82f6;
    border-bottom-color: transparent;
}

/* Белые секции */
.content-section {
    background: white;
    padding: 35px 40px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
}

.section-header {
    font-family: 'Raleway', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #1f2937;
    margin: 0 0 24px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 18px;
    border-bottom: 3px solid #f3f4f6;
}

.section-header i {
    color: #14b8a6;
    font-size: 26px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border-radius: 10px;
}

.description-text {
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    padding: 28px;
    border-radius: 12px;
    line-height: 1.9;
    color: #374151;
    white-space: pre-wrap;
    border: 2px solid #e5e7eb;
    font-size: 15px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.03);
}

/* Файлы */
.files-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.file-item {
    background: #f9fafb;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #e5e7eb;
    transition: all 0.2s;
}

.file-item:hover {
    border-color: #14b8a6;
    box-shadow: 0 2px 8px rgba(20, 184, 166, 0.1);
}

.file-left {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.file-icon {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #14b8a6;
    font-size: 24px;
    border: 2px solid #e5e7eb;
}

.file-info {
    flex: 1;
}

.file-name {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 4px;
    font-size: 15px;
}

.file-meta {
    font-size: 13px;
    color: #6b7280;
}

.file-download {
    background: #14b8a6;
    color: white !important;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    display: flex !important;
    align-items: center;
    gap: 8px;
    text-decoration: none !important;
    transition: all 0.2s;
}

.file-download i {
    color: white !important;
}

.file-download:hover {
    background: #0d9488;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.3);
}

.file-download:hover i {
    color: white !important;
}

/* Контактная информация */
.contacts-box {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border: 3px solid #10b981;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.2);
    transition: all 0.3s ease;
}

.contacts-box:hover {
    box-shadow: 0 8px 28px rgba(16, 185, 129, 0.3);
    transform: translateY(-2px);
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    color: #1f2937;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-row:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: #10b981;
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
}

.contact-row:last-child {
    margin-bottom: 0;
}

.contact-row i {
    color: #10b981;
    width: 28px;
    height: 28px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(16, 185, 129, 0.15);
}

.contact-row strong {
    font-weight: 800;
    margin-right: 10px;
    color: #065f46;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-row a {
    color: #059669;
    text-decoration: none;
    font-weight: 700;
    border-bottom: 2px dashed #10b981;
    transition: all 0.3s ease;
}

.contact-row a:hover {
    color: #047857;
    border-bottom-color: transparent;
    transform: translateY(-1px);
}

/* Контакты скрыты */
.contacts-hidden {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border: 2px solid #ef4444;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
}

.contacts-hidden i {
    font-size: 56px;
    color: #ef4444;
    margin-bottom: 20px;
}

.contacts-hidden h4 {
    color: #991b1b;
    font-size: 20px;
    margin: 0 0 12px 0;
    font-weight: 700;
}

.contacts-hidden p {
    color: #dc2626;
    margin: 0;
    font-size: 15px;
}

/* История изменений */
.history-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.history-item {
    background: linear-gradient(135deg, #fef9e7 0%, #fef3c7 100%);
    border-left: 5px solid #f59e0b;
    padding: 20px 28px;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(245, 158, 11, 0.12);
    transition: all 0.3s ease;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.history-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.2);
}

.history-date {
    color: #92400e;
    font-size: 13px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.history-date i {
    color: #f59e0b;
    font-size: 14px;
}

.history-text {
    color: #78350f;
    font-size: 15px;
    line-height: 1.7;
}

.history-text strong {
    color: #92400e;
    font-weight: 700;
    margin-right: 6px;
}

/* Responsive */
@media (max-width: 1024px) {
    .content-layout {
        grid-template-columns: 1fr;
    }
    
    .meta-sidebar {
        order: 2;
    }
    
    .main-content {
        order: 1;
    }
}

@media (max-width: 768px) {
    .request-page {
        padding: 20px 15px;
    }
    
    .page-header {
        padding: 25px;
    }
    
    .page-header-top {
        flex-direction: column;
    }

    .page-header h1 {
        font-size: 24px;
    }

    .header-actions {
        width: 100%;
    }
    
    .btn {
        flex: 1;
        justify-content: center;
    }

    .company-section {
        flex-direction: column;
        padding: 20px;
    }
    
    .content-section {
        padding: 20px;
    }
    
    .section-header {
        font-size: 18px;
    }
    
    .expired-notice {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .expired-notice-icon {
        font-size: 36px;
    }
    
    .expired-notice-content h3 {
        font-size: 18px;
    }
    
    .expired-notice-content p {
        font-size: 14px;
    }
}


/* ==================== EXTRACTED INLINE STYLES ==================== */

/* From: pages/public/view_request.php */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn 0.2s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background: white;
    border-radius: 16px;
    width: 90%;
    max-width: 650px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: slideUp 0.3s ease-out;
}

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

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 30px;
    border-bottom: 2px solid #f0f0f0;
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
}

.modal-header h2 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    color: white;
    display: flex;
    align-items: center;
    gap: 12px;
}

.modal-header h2 i {
    font-size: 24px;
}

.close-modal {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    color: white;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.modal form {
    padding: 30px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1f2937;
    font-size: 15px;
}

.form-group label input[type="checkbox"] {
    margin-right: 8px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    vertical-align: middle;
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.2s;
    background: #fafafa;
}

.form-control:focus {
    outline: none;
    border-color: #14b8a6;
    background: white;
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

.form-control::placeholder {
    color: #9ca3af;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

input[type="file"].form-control {
    padding: 12px;
    cursor: pointer;
    background: white;
}

input[type="file"].form-control::-webkit-file-upload-button {
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    margin-right: 12px;
    transition: all 0.2s;
}

input[type="file"].form-control::-webkit-file-upload-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.3);
}

.text-muted {
    color: #6b7280;
    font-size: 13px;
    line-height: 1.6;
    margin-top: 8px;
    display: block;
}

.text-muted i {
    color: #14b8a6;
    margin-right: 4px;
}

.d-block {
    display: block;
    margin-top: 5px;
}

.modal-footer {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    padding-top: 20px;
    margin-top: 10px;
    border-top: 2px solid #f0f0f0;
}

#responseMessage.success {
    padding: 16px 20px;
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border: 2px solid #10b981;
    color: #065f46;
    border-radius: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

#responseMessage.success::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 20px;
    color: #10b981;
}

#responseMessage.error {
    padding: 16px 20px;
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border: 2px solid #ef4444;
    color: #991b1b;
    border-radius: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

#responseMessage.error::before {
    content: '\f06a';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 20px;
    color: #ef4444;
}

#selectedFiles {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.file-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: #f0fdfa;
    border: 1px solid #99f6e4;
    border-radius: 8px;
    font-size: 14px;
    color: #0f766e;
}

.file-item i {
    color: #14b8a6;
    font-size: 16px;
}

.file-item .file-name {
    flex: 1;
    font-weight: 500;
}

.file-item .file-size {
    color: #6b7280;
    font-size: 12px;
}
