* {
    box-sizing: border-box;
}

body {
    width: 100vw;
}

.row {
    display: flex;
    justify-content: center;
    margin-inline: 0%;
    width: clamp(500px, 70%, 100%); 
    margin: 0 auto;
}

.last-row {
    margin-bottom: 1em;
}

.flex-column {
    flex-direction: column;
}

.navbar {
    justify-content: flex-start;
}

.navbar .items {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.navbar h1 {
    font-size: 2.5rem;
}

.navbar .items a {
    width: min-content;
    padding-inline: 30px;
    font-weight: 400;
    color: var(--accents-5);
}

.navbar .items .selected {
    background-color: transparent;
    font-weight: 500;
    color: white;
}

.table_img {
    background-color: grey;
    height: 100px;
}

.active {
    background-color: rgb(0, 57, 0) !important;
}

.BULLISH, .BULLISH_REVERSAL {
    font-weight: 700;
    color: rgb(160, 221, 160);
}

.BEARISH, .BEARISH_REVERSAL {
    font-weight: 700;
    color: rgb(221, 160, 160);
}