.report-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    backdrop-filter: blur(12px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.report-container {
    position: relative;
    width: 95%;
    max-width: 1000px;
    max-height: 90vh;
    background: transparent;
    border-radius: 16px;
    overflow: hidden;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.report-header {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.report-action-btn {
    padding: 10px 16px;
    background: linear-gradient(135deg, #6366f1, #10b981);
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.report-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.report-close {
    width: 40px;
    height: 40px;
    background: rgba(99, 102, 241, 0.2);
    border: 1px solid rgba(99, 102, 241, 0.4);
    border-radius: 50%;
    color: #e0e7ff;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.report-close:hover {
    background: rgba(99, 102, 241, 0.4);
    border-color: rgba(99, 102, 241, 0.6);
    transform: scale(1.1);
}

.report-content {
    width: 100%;
    height: 90vh;
    overflow-y: auto;
    padding: 20px;
}

@media print {
    .report-overlay {
        background: white;
        position: static;
    }
    .report-header {
        display: none;
    }
    .report-content {
        height: auto;
        overflow: visible;
    }
}

.report-content::-webkit-scrollbar {
    width: 6px;
}

.report-content::-webkit-scrollbar-track {
    background: rgba(71, 85, 105, 0.2);
    border-radius: 3px;
}

.report-content::-webkit-scrollbar-thumb {
    background: rgba(99, 102, 241, 0.3);
    border-radius: 3px;
}

.report-content::-webkit-scrollbar-thumb:hover {
    background: rgba(99, 102, 241, 0.5);
}

@media print {
    .report-overlay {
        background: white;
        position: static;
    }
    .report-header {
        display: none;
    }
    .report-content {
        height: auto;
        overflow: visible;
    }
}
