/* Export Modal Styles */
.export-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.export-modal-content {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.export-modal-content h3 {
    margin: 0 0 1rem 0;
    color: #333;
    text-align: center;
    font-size: 1.5rem;
}

.export-modal-content p {
    margin: 0 0 1.5rem 0;
    color: #666;
    text-align: center;
}

.export-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.export-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.export-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.export-btn small {
    font-size: 0.85rem;
    opacity: 0.9;
    font-weight: normal;
}

.close-modal {
    background: #f1f3f4;
    color: #5f6368;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    width: 100%;
    transition: background-color 0.2s ease;
}

.close-modal:hover {
    background: #e8eaed;
}

/* Special styling for filtered report button */
.filtered-report-btn {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border: 2px solid #2196f3;
    color: #1565c0;
    position: relative;
}

.filtered-report-btn::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #2196f3, #03a9f4);
    border-radius: 8px;
    z-index: -1;
    opacity: 0.2;
}

.filtered-report-btn:hover {
    background: linear-gradient(135deg, #bbdefb 0%, #90caf9 100%);
    border-color: #1976d2;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(33, 150, 243, 0.3);
}

/* Responsive design */
@media (max-width: 600px) {
    .export-modal-content {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .export-btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }
}
