
.apple-menu-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.apple-menu-item {
    padding: 7px 24px 7px 24px;
    cursor: pointer;
    font-size: 15px;
    color: #fff;
    user-select: none;
    transition: background 0.15s;
    border: none;
    background: none;
    outline: none;
}
.apple-menu-item:hover, .apple-menu-item:focus {
    background: rgba(255,255,255,0.10);
}
.apple-menu-separator {
    height: 1px;
    background: rgba(255,255,255,0.10);
    margin: 4px 0 4px 0;
    width: 92%;
    align-self: center;
    border-radius: 1px;
}

.lock-btn-compact {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(20,20,20,0.98);
    color: #fff;
    border-radius: 8px;
    padding: 7px 18px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    margin: 6px 0 2px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
    transition: background 0.18s, box-shadow 0.18s;
}
.lock-btn-compact:hover {
    background: #222;
    box-shadow: 0 4px 16px rgba(0,0,0,0.22);
}
.lock-label-compact {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.apple-menu {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s cubic-bezier(.4,0,.2,1), visibility 0s linear 0.35s;
}
.apple-menu[aria-hidden="false"] {
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
}

#appleLockPreview {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s cubic-bezier(.4,0,.2,1), visibility 0s linear 0.35s;
}
#appleLockPreview.visible {
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
}

.apple-logo {
    font-size: 18px;
    cursor: pointer;
    padding: 0 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background 0.15s ease;
    height: 25px;
}

.apple-logo:hover {
    background: rgba(255, 255, 255, 0.15);
}

.apple-logo svg {
    width: 18px;
    height: 18px;
    fill: white;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

.menu-bar {
    height: 34px;
    background: rgba(40, 40, 40, 0.85);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 12px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 13.5px;
    position: relative;
    z-index: 2000 !important;
    pointer-events: auto !important;
    font-weight: 500;
    border-bottom: 0.5px solid rgba(0, 0, 0, 0.3);
}

.menu-bar-left {
    display: flex;
    gap: 18px;
    align-items: center;
}
