.CBPanelView {
    background-color: rgba(0, 0, 0, 0.5);
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1500; /* CBPanels should only be used for error messages */
}

.CBPanelContainer {
    background-color: white;
    border-radius: 5px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    margin: 15vh auto 0;
    max-height: 65vh;
    max-width: 90vw;
    width: 720px;
}

.CBPanelContent {
    overflow: scroll;
    padding: 20px;
}

.CBPanelButtonView {
    align-items: center;
    display: flex;
    flex: none;
    justify-content: center;
    padding: 20px;
}
