/* Estilos para el botón de descarga de Excel */
@import url('https://fonts.googleapis.com/css2?family=Gabarito:wght@400;500;600;700&display=swap');

.csd-excel-btn-container {
margin: 15px 0;
display: flex;
justify-content: flex-end;
}

.csd-excel-btn {
background-color: 
#4CAF50;
color: white;
border: none;
border-radius: 12px;
padding: 10px 20px;
font-family: 'Gabarito', sans-serif;
font-size: 14px;
font-weight: 600;
cursor: pointer;
display: flex;
align-items: center;
gap: 8px;
transition: all 0.3s ease;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.csd-excel-btn
 {
background-color: 
#45a049;
box-shadow: 0 4px 8px rgba(0,0,0,0.15);
transform: translateY(-1px);
}

.csd-excel-btn :hover{
    background-color: purple;
}

.csd-excel-btn
 {
transform: translateY(1px);
box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.csd-excel-btn svg {
width: 16px;
height: 16px;
}

/* Responsive */
@media (max-width: 768px) {
.csd-excel-btn-container {
justify-content: center;
}
}

