/* ドロップダウンメニュースタイル1 */

.dropdown-menu-style1 {
    background: transparent;
    border-radius: 25px;
    padding: 2px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    position: relative;
    transition: background-color 0.2s ease;
}

.dropdown-menu-style1:hover {
    background: var(--color-gray-100);
}

.dropdown-menu-style1.active {
    background: var(--color-gray-100);
}

/* ドロップダウンメニュー */
.dropdown-menu-style1-menu {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: var(--color-soft-white);
    border-radius: 6px;
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.25);
    padding: 3px;
    min-width: 60px;
    width: max-content;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
}

.dropdown-menu-style1-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu-style1-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 13px 12px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.dropdown-menu-style1-item:hover {
    background: var(--color-gray-100);
}

.dropdown-menu-style1-item.highlighted {
    background: var(--color-gray-100);
}

.dropdown-menu-style1-item span {
    font-family: var(--font-base);
    font-weight: 500;
    font-size: 12px;
    line-height: 1;
    color: var(--color-soft-black);
    white-space: nowrap;
}
