﻿

.menu-window {
    position: absolute;
    top: calc(100% + 15px);
    right: 0;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 12px;
    min-width: 220px;
    z-index: 8;
    border: 2px solid #2a90d0;
    display: none;
}

    .menu-window::before {
        content: '';
        position: absolute;
        top: -10px;
        right: calc(60px - 28px);
        width: 0;
        height: 0;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-bottom: 10px solid #2a90d0;
    }

    .menu-window::after {
        content: '';
        position: absolute;
        top: -9px;
        right: calc(60px - 27px);
        width: 0;
        height: 0;
        border-left: 9px solid transparent;
        border-right: 9px solid transparent;
        border-bottom: 9px solid white;
    }

    .menu-window.active {
        display: block;
    }

.menu-window-card {
    padding: 12px 16px;
    margin-bottom: 4px;
    border-radius: 8px;
    transition: all 0.2s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .menu-window-card:hover {
        background-color: #f0f8ff;
        transform: translateX(4px);
    }

    .menu-window-card:last-child {
        margin-bottom: 0;
    }

    .menu-window-card label {
        cursor: pointer;
        font-size: 14px;
        color: #333;
        font-weight: 500;
        width: 100%;
        display: flex;
        align-items: center;
        gap: 10px;
        margin: 0;
    }

.menu-window.active {
    animation: slideDown 0.3s ease;
}
