* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
}

:root {
    --color-bg-block: #191921;
    --color-border-popup: rgba(255, 255, 255, 0.15);
    --color-text-primary: #ffffff;
}
body.light {
    --color-bg-block: #fafafa;
    --color-border-popup: rgba(30, 30, 30, 0.15);
    --color-text-primary: #111111;
}

#test-chart {
    z-index: -1;
}
.chart-container {
    z-index: -1;
    top: -100% !important;
    border: none !important;
}

#ticker-search-input {
    background: transparent;
    border: none;
    color: #fff;
    width: 240px;
    font-size: 14px;
    font-weight: 400;
    opacity: 0;
}
#ticker-search-input::placeholder {
    color: red;
}

#enter-ar-button {
    position: fixed;
    bottom: 64px;
    right: 32px;
    padding: 8px 16px;
    border-radius: 14px;
    font-weight: 600;
    background: #FFFFFF55;
    color: #333;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 300ms;
    cursor: pointer;
}
#enter-ar-button:hover {
    opacity: 0.5;
}

.cc-revoke, div[aria-label="cookieconsent"] {
    display: none;
}