/* ... existing content ... */

/* Video Card Menu Action */
.video-menu-container {
    position: relative;
    margin-left: 8px;
    flex-shrink: 0;
}

.btn-menu-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: #1d1d1f;
    transition: background 0.2s ease;
    cursor: pointer;
}

.btn-menu-dots:hover {
    background: rgba(0, 0, 0, 0.05);
}

.menu-dropdown {
    display: none;
    position: absolute;
    bottom: 100%;
    right: 0;
    width: 180px;
    background: #fff;
    /* Explicit white background */
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
    padding: 6px;
    z-index: 100;
    margin-bottom: 8px;
    transform-origin: bottom right;
    animation: menuScale 0.1s ease-out;
}

@keyframes menuScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.menu-item-get-url {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 12px;
    border: none;
    background: none;
    text-align: left;
    font-size: 13px;
    font-weight: 500;
    color: #1d1d1f;
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.2s;
    font-family: inherit;
    /* Inherit font family */
}

.menu-item-get-url:hover {
    background: #f5f5f7;
}

.menu-item-get-url svg {
    color: #007aff;
    /* Blue icon */
}