2025-11-21 08:33:42 -06:00
|
|
|
.downloadBtn {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
2025-12-05 16:52:31 -06:00
|
|
|
background: #217346;
|
2025-11-21 08:33:42 -06:00
|
|
|
color: white;
|
|
|
|
|
border: none;
|
|
|
|
|
padding: 10px 16px;
|
|
|
|
|
cursor: pointer;
|
2025-12-05 16:52:31 -06:00
|
|
|
border-radius: 10px 10px 0 0;
|
2025-11-21 08:33:42 -06:00
|
|
|
font-size: 14px;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
transition: background 0.2s ease;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.downloadBtn:hover {
|
2025-12-05 16:52:31 -06:00
|
|
|
background: #1e5838;
|
2025-11-21 08:33:42 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Icono con css puro */
|
|
|
|
|
.icon {
|
|
|
|
|
width: 18px;
|
|
|
|
|
height: 18px;
|
|
|
|
|
position: relative;
|
2025-12-05 16:52:31 -06:00
|
|
|
}
|