.export-excel-container {
    margin: 20px 0;
    display: flex;
    gap: 10px;
    align-items: center;
}

.report-type-select {
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    min-width: 250px;
}

.export-excel-button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.export-excel-button:hover {
    background-color: #45a049;
}

.export-loading {
    display: none;
    margin-left: 10px;
    color: #666;
} 