.resource-menu {
    position: relative;
}

.resource-menu summary {
    list-style: none;
}

.resource-menu summary::-webkit-details-marker {
    display: none;
}

.resource-menu-trigger {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 8px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    cursor: pointer;
    font-size: 12px;
    font-weight: normal;
    line-height: normal;
    text-decoration: none;
    transition: background 0.3s ease;
}

.resource-menu-trigger::after {
    content: "▾";
    font-size: 9px;
}

.resource-menu-trigger:hover,
.resource-menu[open] .resource-menu-trigger {
    background: rgba(255, 255, 255, 0.3);
}

.resource-menu-active .resource-menu-trigger {
    border-color: rgba(255, 255, 255, 0.95);
    background: rgba(255, 255, 255, 0.95);
    color: #880e4f;
    font-weight: 600;
}

.resource-menu-items {
    position: absolute;
    z-index: 1000;
    top: calc(100% + 6px);
    left: 50%;
    min-width: 150px;
    padding: 6px;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    background: white;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
    transform: translateX(-50%);
}

.resource-menu-item {
    display: block;
    padding: 8px 10px;
    border-radius: 7px;
    color: #495057;
    font-size: 13px;
    font-weight: 500;
    text-align: left;
    text-decoration: none;
    white-space: nowrap;
}

.resource-menu-item:hover {
    background: #fce4ec;
    color: #880e4f;
}

.resource-menu-item[aria-current="page"] {
    background: #f8bbd0;
    color: #880e4f;
    font-weight: 700;
}
