.multitabs{
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}
.multitabs[data-tabspanel="none"]{
    flex-direction: row;
    position: relative;
}
.multitabs[data-tabspanel="top"]{
    flex-direction: column;
}
.multitabs[data-tabspanel="right"]{
    flex-direction: row-reverse;
}
.multitabs[data-tabspanel="top"] .multitabs-panel{
    width: 100%;
    height: fit-content;
    background-color: #FBE9CE;
    padding: 0 1rem;
    overflow-x: scroll;
    scroll-behavior: smooth;
    scrollbar-width: none;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-end;
    gap: 1rem;
    flex-shrink: 0;
}
.multitabs[data-tabspanel="right"] .multitabs-panel{
    width: fit-content;
    height: fit-content;
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1rem;
    flex-shrink: 0;
    position: sticky;
    top: calc(80px + 1rem);
}
.multitabs-panel-tab{
    cursor: pointer;
}
.multitabs-panel-tab[data-tabstyle="default"]{
    width: fit-content;
    height: fit-content;
    padding: 1rem;
    background-color: #ECDCC4;
}
.multitabs-panel-tab[data-tabstyle="default"][data-active="true"]{
    background-color: #FDF7ED;
}
.multitabs[data-tabspanel="none"] .multitabs-panel-tab[data-tabstyle="default"]{
    width: calc(100% - 2rem);
}
.multitabs[data-tabspanel="top"] .multitabs-panel-tab[data-tabstyle="default"]{
    border-radius: 0.25rem 0.25rem 0 0;
}
.multitabs[data-tabspanel="right"] .multitabs-panel-tab[data-tabstyle="default"]{
    border-radius: 0 0.25rem 0.25rem 0;
}
.multitabs-container{
    height: fit-content;
    /* padding: 4rem; */
    /* padding: 0 6rem 4rem 2rem; */
    padding-bottom: 4rem;
    /* background-color: #FDF7ED; */
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1rem;
}
.multitabs-container[data-active="true"]{
    display: flex;
}
.multitabs[data-tabspanel="none"] .multitabs-container{
    width: 100%;
    flex-shrink: 0;
}
.multitabs[data-tabspanel="top"] .multitabs-container{
    width: calc(100% - 4rem);
}
.multitabs[data-tabspanel="right"] .multitabs-container{
    flex-grow: 1;
    min-width: 0;
}