.CollapsablePanel {

    width: 20rem;
    max-width: 100%;
    height: auto;
    display: flex;
    flex-flow: column;
    gap: 0.5rem;
}
.CollapsablePanel-title {
    width: 100%;
    height: auto;
    display: flex;
    flex-flow: row;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    cursor: pointer;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.5rem;
}
.CollapsablePanel-title:hover {
    background-color: rgba(255, 255, 255, 0.08);
}
.CollapsablePanel-inner {
    width: 100%;
    height: auto;
    display: flex;
    flex-flow: column;
    gap: 0.5rem;
    padding: 0.5rem;
}
