﻿:root {
    --v2-sidesheet-width: 300px;
}

@media (min-width: 1600px) {
    :root {
        --v2-sidesheet-width: 500px;
    }
}

.sidesheet-container {
    height: 100%;
    border: 1px solid #ccc;
    border-right: none;
    border-radius: 2px;
    margin-left: 10px;
    margin-right: -10px;
    overflow-y: auto;
    width: var(--v2-sidesheet-width);
}

.sidesheet-back-button {
    min-height: 38px;
    width: 38px;
    border-right: var(--v2-scaled-border-width) solid var(--v2-theme-border-light-color);
    border-bottom: var(--v2-scaled-border-width) solid var(--v2-theme-border-light-color);
}
.sidesheet-section {
    flex: 1;
    overflow-y: auto;
}

.sidesheet-header {
    position: sticky;
    top: 0;
    background-color: var(--main-background-color);
}

.sidesheet-header-right {
    min-height: 38px;
    padding-left: 6px;
    padding-right: 10px;
    border-bottom: var(--v2-scaled-border-width) solid var(--v2-theme-border-light-color);
}

.sidesheet-section > *:not(:last-child) {
    border-bottom: var(--v2-scaled-border-width) solid var(--v2-theme-border-light-color);
    padding-bottom: 20px;
}


