/* Export to Excel Button Styles */
.export-button-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.export-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #EA7C3C;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    box-shadow: 0px 4px 6px -4px rgba(0, 0, 0, 0.1), 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    overflow: hidden;
    white-space: nowrap;
}

.export-button:hover {
    background: #D96A2B;
    transform: scale(1.02);
}

.export-button:active {
    transform: scale(0.98);
}

/* Collapsed state - just icon */
.export-button.collapsed {
    width: 56px;
    height: 56px;
    padding: 16px;
}

/* Expanded state - icon + text */
.export-button.expanded {
    width: auto;
    min-width: 176px;
    height: 56px;
    padding: 16px 20px;
}

.export-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
}

.export-text {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #FFFFFF;
    text-align: center;
    animation: fadeIn 0.2s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Pulse animation on load */
@keyframes pulse {
    0% {
        box-shadow: 0px 4px 6px -4px rgba(0, 0, 0, 0.1), 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
    }
    50% {
        box-shadow: 0px 4px 6px -4px rgba(234, 124, 60, 0.4), 0px 10px 15px -3px rgba(234, 124, 60, 0.3);
    }
    100% {
        box-shadow: 0px 4px 6px -4px rgba(0, 0, 0, 0.1), 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
    }
}

.export-button.expanded {
    animation: pulse 2s ease-in-out;
}
