:root {
    --details-main: #ffffff;
}

details p {
    color: inherit;
}

summary {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
}

summary::after {
    content: '';
    width: 0;
    height: 0;
    border-top: 10px solid #15171b;
    border-inline: 7px solid transparent;
    transition: 0.2s;
}

details[open] > summary {
    margin-bottom: 8px;
}

details[open] > summary::after {
    transform: rotate(-180deg);
}

summary::-webkit-details-marker {
    display: none;
}

summary {
    cursor: pointer;
}

details[open] summary {
    border-radius: 5px 5px 0 0;
}

details {
    background: #FFFFFF;
    margin-bottom: 8px;
    padding: 1.5rem;
    border: 1px solid #f4f4f4;
}
