/* Estilos para los botones y el menú de compartir */

.button-container {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
    width: 100%;
}

.button {
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 120px;
    font-size: 14px;
}

.button-download {
    background-color: #ffffff;
    color: #3c4043;
    border: 1px solid #dadce0;
}

/* Eliminado efecto hover */
.button-download:hover {
    background-color: #ffffff;
}

.button-share {
    background-color: #1a73e8;
    color: #ffffff;
    border: none;
}

/* Eliminado efecto hover */
.button-share:hover {
    background-color: #1a73e8;
}

.button i {
    font-size: 14px;
}

.share-menu-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}

.share-menu {
    display: none;
    position: absolute;
    top: 10px;
    background-color: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 100;
    min-width: 180px;
    padding: 8px 0;
}

.share-menu.visible {
    display: block;
}

.share-option {
    display: flex;
    align-items: center;
    padding: 12px 18px;
    text-decoration: none;
    color: #333;
    transition: background-color 0.2s ease;
}

/* Eliminado efecto hover */
.share-option:hover {
    background-color: transparent;
}

.share-option svg {
    width: 20px;
    height: 20px;
    margin-right: 12px;
}

/* Regla global para desactivar todos los efectos hover */
button:hover,
.button:hover,
.action-button:hover,
.share-option:hover,
a:hover {
    transform: none !important;
    background-color: inherit !important;
    box-shadow: inherit !important;
    color: inherit !important;
    border-color: inherit !important;
    transition: none !important;
}
