﻿.asistencia-container {
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 1000;
}
/*.asistencia-container2 {
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(60%);
    z-index: 1000;
}
.asistencia-toggle2 {
    display: flex;
    align-items: center;
    justify-content: center;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    text-decoration: none;
    background-color: #FF6702;
    color: #fff;
    width: 30px;
    height: 120px;
    border-radius: 0 8px 8px 0;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    font-weight: bold;
    font-size: 12px;
    text-transform: uppercase;
}*/
.asistencia-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    text-decoration: none;
    background-color: #FF6702;
    color: #fff;
    width: 30px;
    height: 120px;
    border-radius: 0 8px 8px 0;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    font-weight: bold;
    font-size: 12px;
    text-transform: uppercase;
}

    .asistencia-toggle:hover {
        background-color: #FF6702;
    }

.asistencia-dropdown {
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    width: 200px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

    .asistencia-dropdown.active {
        opacity: 1;
        visibility: visible;
    }

    .asistencia-dropdown a {
        display: block;
        padding: 10px 15px;
        text-decoration: none;
        color: #333;
        transition: background-color 0.3s;
        font-size: 11px;
    }

        .asistencia-dropdown a:hover {
            background-color: #f0f0f0;
        }

        .asistencia-dropdown a i {
            margin-right: 10px;
        }
