/* 共通メニュー用スタイル */
.common-menu-container {
    position: relative;
    pointer-events: auto;
}

/* メニューを開くボタン */
.menu-trigger-btn {
    cursor: pointer;
    background: #fff;
    border: 1px solid #ccc;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* メニュー本体（隠し状態） */
.menu-dropdown {
    display: none;
    position: absolute;
    top: 35px;
    left: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    width: 200px;
    z-index: 2000;
    overflow: hidden;
}

.menu-dropdown.show {
    display: block;
}

/* メニュー項目 */
.menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    border-bottom: 1px solid #eee;
    transition: background 0.2s;
}

.menu-item:hover {
    background: #f8f9fa;
}

.menu-item:last-child {
    border-bottom: none;
}

/* 「新」バッジと強調表示 */
.menu-item.is-new {
    background: #fff0f7; /* 薄いピンク */
    font-weight: bold;
}

.new-badge {
    background: #d63384;
    color: white;
    font-size: 10px;
    padding: 1px 5px;
    border-radius: 4px;
    margin-left: 5px;
}
