/* Export Image Styles - Enhanced Design */
.export-wrapper {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 40px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.export-header {
    background: linear-gradient(135deg, #1a3c6e 0%, #2c5aa0 100%);
    color: white;
    padding: 30px;
    border-radius: 15px 15px 0 0;
    text-align: center;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}

.export-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}

.export-header-content {
    position: relative;
    z-index: 1;
}

.export-logo {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: 2px;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.05) 100%);
    padding: 15px 30px;
    border-radius: 15px;
    display: inline-block;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.export-logo::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: logoShine 3s infinite;
}

@keyframes logoShine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.export-company-name {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.export-company-tagline {
    font-size: 16px;
    opacity: 0.95;
    font-weight: 500;
}

.export-divider {
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, #e9b114 50%, transparent 100%);
    margin: 20px 0;
}

.export-table-container {
    background: white;
    border-radius: 0 0 15px 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 2px solid #e9ecef;
}

.export-table-header {
    background: linear-gradient(135deg, #1a3c6e 0%, #2c5aa0 100%);
    color: white;
    padding: 25px 30px;
    position: relative;
    overflow: hidden;
}

.export-table-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #e9b114 50%, transparent 100%);
}

.export-table-header h3 {
    font-size: 26px;
    margin-bottom: 12px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.export-table-header p {
    opacity: 0.95;
    font-size: 17px;
    font-weight: 500;
}

.export-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 15px;
    background: white;
}

.export-table thead {
    background: linear-gradient(135deg, #1a3c6e 0%, #2c5aa0 100%);
    color: white;
}

.export-table th {
    padding: 15px 12px;
    text-align: center;
    font-weight: 700;
    border: none;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.export-table th:last-child {
    border-right: none;
}

.export-table td {
    padding: 14px 12px;
    text-align: center;
    border: none;
    border-bottom: 1px solid #e9ecef;
    border-right: 1px solid #e9ecef;
    font-weight: 500;
}

.export-table td:last-child {
    border-right: none;
}

.export-table tbody tr:nth-child(even) {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.export-table tbody tr:nth-child(odd) {
    background: white;
}

.export-table tbody tr:last-child td {
    border-bottom: 2px solid #dee2e6;
}

.export-table tfoot {
    background: linear-gradient(135deg, #e9b114 0%, #ffc107 100%);
    color: #1a3c6e;
    font-weight: 700;
}

.export-table tfoot td {
    padding: 18px 12px;
    font-size: 17px;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.export-table tfoot td:first-child {
    font-size: 18px;
}

.export-footer {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 25px 30px;
    border-radius: 0 0 15px 15px;
    border-top: 3px solid #e9b114;
    text-align: center;
    margin-top: 0;
}

.export-footer-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.export-footer-item {
    flex: 1;
    min-width: 200px;
}

.export-footer-item h4 {
    color: #1a3c6e;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.export-footer-item p {
    color: #555;
    font-size: 13px;
    margin: 4px 0;
    font-weight: 500;
}

.export-registration {
    background: linear-gradient(135deg, #1a3c6e 0%, #2c5aa0 100%);
    color: white;
    padding: 15px;
    border-radius: 10px;
    margin-top: 15px;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
}

.export-watermark {
    position: absolute;
    bottom: 20px;
    right: 20px;
    opacity: 0.1;
    font-size: 120px;
    font-weight: 900;
    color: #1a3c6e;
    transform: rotate(-45deg);
    pointer-events: none;
    z-index: 0;
}

