
.styled-detail {
    margin-bottom: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #f9f9f9;
    position: relative;
}

.styled-detail summary {
    display: block;
    padding: 8px 30px 8px 12px;
    cursor: pointer;
    background-color: #eee;
    border-bottom: 1px solid #ccc;
    border-radius: 4px 4px 0 0;
    font-weight: bold;
    position: relative;
    user-select: none;
    color: black;
    min-width: 120px;
}

.styled-detail summary::-webkit-details-marker,
.styled-detail summary::marker {
    display: none;
}

.styled-detail summary:hover {
    background-color: #e0e0e0;
}

.styled-detail summary::after {
    content: '\25BC';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.2s ease;
}

.styled-detail[open] summary::after {
    transform: translateY(-50%) rotate(180deg);
}

.styled-detail .content {
    padding: 12px;
    border-top: 1px solid #eee;
    background-color: #fff;
    border-radius: 0 0 4px 4px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 10;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.styled-detail .content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.styled-detail .content ul li {
    color: black;
}
