/**
 * Estilos para el icono de acceso al panel de administración
 */

.admin-access-icon {
    position: fixed;
    top: 7%;
    right: 0;
    transform: translateY(-50%);
    background-color: rgba(0, 86, 112, 0.20);
    color: white;
    width: 40px;
    height: 40px;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 999;
    opacity: 0.7;
}

.admin-access-icon:hover {
    width: 50px;
    opacity: 1;
}

.admin-access-icon i {
    font-size: 18px;
}
