.Card {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.Card-Container {
    width: 100%;
    height: 100%;
}

.Card-Header {
    width: 100%;
    height: 34px;
    color: var(--color-text-OG);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.Card-Header span {
    z-index: 50;
    user-select: none;
    cursor: pointer;
    touch-action: none;
    scroll-behavior: none;
    -webkit-tap-highlight-color: transparent;
    margin-top: 0;
    margin-right: 4px;
    fill: var(--color-text-OG);
}

.Card-Header h1 {
    margin-bottom: 0;
    margin-top: 0;
    margin-left: 10px;
    user-select: none;
    cursor: pointer;
    touch-action: none;
    scroll-behavior: none;
    -webkit-tap-highlight-color: transparent;
}

.Card-Header h1:last-child {
    margin-right: 10px;
}

.Card-Body {
    width: 100%;
    height: 100%;
    background-color: var(--color-Accent1-OG);
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}