@import url('https://fonts.googleapis.com/css?family=Poppins');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #1E1E1E;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: url(fallback.jpg) no-repeat;
    background-size: cover;
    background-position: center;
}

::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: #1E1E1E;
}

::-webkit-scrollbar-thumb {
    background-color: #d3d3d3;
    border-radius: 10px;
    border: 3px solid #1E1E1E;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #a8a8a8;
}

html {
    scrollbar-width: thin;
    scrollbar-color: #d3d3d3 #1E1E1E;
}

/* =======================
   2. Layout: Header, Navigation, Burger, Side-Menu
   ======================= */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 32px 0 32px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99;
}

main {
    height: calc(100vh - 100px);
    display: flex;
    align-items: stretch;
}

.main-container {
    padding-top: 40px;
}

.main-footer {
    position: relative;
    margin: 20px auto 20px auto;
    max-width: 300px;
    width: 100%;
    padding: 10px 20px;
    text-align: center;
    background-color: rgba(23, 23, 23, 0.85);
    color: #ffffff;
    border-radius: 5px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
}

.main-footer p {
    margin: 5px 0;
    font-size: 14px;
}

#background-video {
    position: fixed;
    pointer-events: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.navigation a {
    position: relative;
    font-size: 1.1em;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    margin-left: 40px;
}

.navigation a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 3px;
    background: #fff;
    border-radius: 5px;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform .5s;
}

.navigation a:hover::after {
    transform-origin: left;
    transform: scaleX(1);
}

.navigation a.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.burger {
    display: none;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: #FFFFFF;
    margin: 5px 0;
    transition: all 0.3s ease;
    transform-origin: center;
}

.burger.open div:nth-child(1) {
    transform: rotate(45deg) translate(5.5px, 5.5px);
}
.burger.open div:nth-child(2) {
    opacity: 0;
}
.burger.open div:nth-child(3) {
    transform: rotate(-45deg) translate(5.5px, -5.5px);
}

.side-menu {
    display: none;
}

.side-menu.open {
    left: 0;
    display: block;
}

.side-menu .mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.side-menu .mobile-nav-links a {
    display: block;
    padding: 15px;
    text-decoration: none;
    color: #FFFFFF;
    margin-bottom: 10px;
    border-radius: 5px;
    background-color: rgba(0, 0, 0, 0.6);
    transition: background-color 0.3s;
}

.side-menu .mobile-nav-links a:hover {
    background-color: rgba(0, 0, 0, 0.9);
}

/* =======================
   3. Index: Hero, Features, Social Media
   ======================= */
.hero-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #FFFFFF;
    height: 100vh;
    position: relative;
}

.hero-section h1, .hero-section p, .hero-section .cta-button {
    opacity: 0;
    transform: scale(0.5);
    animation: appearZoom 2s forwards;
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    animation-delay: 0s;
}

.hero-section p {
    font-size: 1.5rem;
    margin-bottom: 20px;
    animation-delay: 0.5s;
}

.hero-section .cta-button {
    padding: 12px 25px;
    background-color: #58FA82;
    color: #000;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: inline-block;
    margin-top: 20px;
}

.hero-section .cta-button:hover {
    background-color: #4CAF50;
    transform: translateY(-3px);
}

@keyframes appearZoom {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.features-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 50px 20px;
    margin-top: 50px;
}

.feature-item {
    background-color: rgba(23, 23, 23, 0.85);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    color: #FFFFFF;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    margin: 20px;
    width: 250px;
    height: auto;
    position: relative;
}

.feature-item img {
    max-width: 60px;
    margin-bottom: 15px;
    opacity: 0.8;
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #58FA82;
}

.feature-item p {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #CCCCCC;
}

.feature-item a.cta-button {
    padding: 10px 20px;
    background-color: #58FA82;
    color: #000;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.feature-item a.cta-button:hover {
    background-color: #4CAF50;
    transform: translateY(-3px);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
}

.social-media {
    text-align: center;
    padding: 50px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.social-media h2 {
    color: #FFFFFF;
    font-size: 2rem;
    margin-bottom: 30px;
}

.discord-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-card {
    background-color: rgba(23, 23, 23, 0.85);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    color: #FFFFFF;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    margin: 20px;
    width: 200px;
    height: auto;
    position: relative;
}

.social-card img {
    max-width: 50px;
    margin-bottom: 10px;
    opacity: 0.8;
    border-radius: 25px;
}

.social-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #58FA82;
}

.social-card p {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #CCCCCC;
}

.social-card .cta-button {
    padding: 10px 20px;
    background-color: #58FA82;
    color: #000;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.social-card .cta-button:hover {
    background-color: #4CAF50;
    transform: translateY(-3px);
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
}

/* =======================
   4. Prices: Sidebar, Chart, Suche, Dashboard
   ======================= */
body.prices-page{
    display:flex;
    flex-direction:column;
}

.prices-main{
	width:100%;   
    display:flex;
    align-items:stretch;
    height:calc(100vh - 100px);
    padding-inline:20px;      
    column-gap:32px;
    box-sizing:border-box;
}


.price-sidebar{
    width: 260px;                 
    padding: 20px 10px;
    background: rgba(23,23,23,.85);
    border-radius: 10px;
    box-shadow: 2px 0 5px rgba(0,0,0,.3);
    display: flex;
    flex-direction: column;
    height: 100%;                 
    overflow: hidden;             
}

.item-scroll{
    flex:1 1 auto;              
    overflow-y:auto;           
    overflow-x:hidden;
    list-style:none;
    margin:0;
    padding:0 4px 0 0;  
}

.search-container,
.warning-container{
    flex-shrink:0;              
}


.price-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.price-sidebar ul li {
    margin: 10px 0;
}

.price-sidebar ul li a {
    text-decoration: none;
    color: #ffffff;
    display: block;
    padding: 8px 12px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    background-color: rgba(0, 0, 0, 0.6);
    text-align: center;
    width: 100%;
    box-sizing: border-box;
	    font-size: 14px;

}

.price-sidebar ul li a:hover {
    background-color: rgba(0, 0, 0, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.price-sidebar h6 {
    text-align: center;
    font-weight: bold;
}

.chart-container{
    flex:1 1 auto;               
    min-width:0;             

    height:100%;  
    display:flex;
    flex-direction:column;

    padding:20px;
    border-radius:10px;
    background:rgba(23,23,23,.85);
    overflow:hidden;  
}

canvas#priceChart{
    flex:1 1 0;             
    min-height:0;         
    width:100% !important;    
}

.search-container {
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    width: 100%;
}

.search-container input {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 10px;
    margin-bottom: 10px;
    background-color: #FFFFFF;
    color: #000000;
    box-sizing: border-box;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.search-container input:focus {
    background-color: #FFFFFF;
    outline: none;
}

.search-container input::placeholder {
    color: #888888;
}

.search-container button {
    padding: 10px 20px;
    border: none;
    background-color: #007bff;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
}

.suggestions {
    position: absolute;
    background-color: rgba(30, 30, 30, 0.95);
    border: 1px solid rgba(50, 50, 50, 1);
    color: #FFFFFF;
    max-height: 200px;
    overflow-y: auto;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    width: 100%;
    pointer-events: auto;
}

.suggestion-item {
    padding: 10px;
    cursor: pointer;
    color: #CCCCCC;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.suggestion-item:hover {
    background-color: rgba(50, 50, 50, 1);
    color: #FFFFFF;
}

.warning-container {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    margin-top: 20px; 
    font-size: 14px;
}

.warning-container h6 {
    margin: 0;
    padding: 0;
    font-weight: bold;
    font-size: 10px;
}

.warning-container p {
    margin: 5px 0 0 0;
    padding: 0;
    font-size: 10px;
}

.dashboard-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding: 5px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-item span {
    font-weight: bold;
    color: #58FA82;
}

.dashboard-item small {
    color: #CCCCCC;
}

.chart-info{
    margin-top:12px;           
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:12px 20px;
    border-radius:10px;
    background:rgba(0,0,0,.7);
    box-shadow:0 2px 10px rgba(0,0,0,.5);
    font-size:14px;
    flex-wrap:wrap;
}


.chart-info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 5px 10px;
    font-size: 14px;
    color: #CCCCCC;
    font-weight: bold;
    text-align: center;
    flex: 1;
}

.chart-info-item span {
    font-size: 18px;
    color: #FFFFFF;
    margin-bottom: 2px;
}

.chart-info-item small {
    color: #58FA82;
}

.chart-info-item.negative small {
    color: #FF4C4C;
}

.close-button {
    display: none;
}

/* =======================
   5. Warps: Kategorien, Grid, Copy-Notification
   ======================= */
.warp-page-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: rgba(23, 23, 23, 0.85);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.category-nav {
    margin-bottom: 20px;
    text-align: center;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
}

.category-list a {
    text-decoration: none;
    color: #ffffff;
    display: block;
    padding: 12px 24px;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.6);
    text-align: center;
    box-sizing: border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    white-space: nowrap;
}

.category-list a:hover {
    background-color: rgba(0, 0, 0, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.warp-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 15px;
}

.warp-grid li {
    margin: 0;
    padding: 0;
    flex: 0 0 calc(20% - 15px);
    max-width: calc(20% - 15px);
}

.warp-grid li a {
    text-decoration: none;
    color: #ffffff;
    display: block;
    padding: 12px 24px;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.6);
    text-align: center;
    box-sizing: border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.warp-grid li a:hover {
    background-color: rgba(0, 0, 0, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.separator-line {
    width: 100%;
    height: 3px;
    background-color: rgba(0, 0, 0, 0.8);
    margin: 20px 0;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.5);
    border: hidden;
}

#copy-notification {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 1000;
    text-align: center;
    pointer-events: none;
}

/* =======================
   6. Hall of Fame (HoF)
   ======================= */
.hof-main {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    padding: 40px 60px;
    box-sizing: border-box;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.hof-sidebar {
    width: 30%;
    background-color: rgba(23, 23, 23, 0.85);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.yellow-star {
    color: yellow;
}

li span.star {
    color: yellow;
}

.hof-sidebar h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #58FA82;
    text-align: center;
}

.hof-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hof-sidebar ul li {
    margin-bottom: 10px;
    padding: 12px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    text-align: left;
    display: flex;
    align-items: center;
    height: 100%;
    flex-grow: 1;
}

.hof-sidebar ul li span.rank {
    display: inline-block;
    width: 30px;
    text-align: center;
    margin-right: 10px;
    font-weight: bold;
}

.hof-sidebar ul li:last-child {
    margin-bottom: 0;
}

.hof-sidebar ul li:hover {
    background-color: rgba(0, 0, 0, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.hof-footer {
    text-align: center;
    padding: 10px 20px;
    background-color: rgba(23, 23, 23, 0.85);
    color: #ffffff;
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    width: auto;
    max-width: 300px;
    margin: 20px auto;
}

.hof-footer p {
    margin: 5px 0;
    font-size: 14px;
}

/* =======================
   7. Responsive Styles (Media Queries)
   ======================= */
@media (max-width: 768px) {

    #background-video {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -1;
    }

    .main-footer {
        position: relative;
        margin: 20px auto 20px auto;
        max-width: 300px;
        padding: 10px 20px;
        text-align: center;
        background-color: rgba(23, 23, 23, 0.85);
        color: #ffffff;
        border-radius: 5px;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
    }

    .navigation {
        display: none;
    }

    .burger {
        position: fixed;
        top: 10px;
        left: 10px;
        cursor: pointer;
        display: block;
        z-index: 1001;
    }

    .burger div {
        width: 25px;
        height: 3px;
        background-color: #FFFFFF;
        margin: 5px 0;
        transition: all 0.3s ease;
        transform-origin: center;
    }

    .burger.open div:nth-child(1) {
        transform: rotate(45deg) translate(5.5px, 5.5px);
    }

    .burger.open div:nth-child(2) {
        opacity: 0;
    }

    .burger.open div:nth-child(3) {
        transform: rotate(-45deg) translate(5.5px, -5.5px);
    }

    .side-menu {
        display: block;
        position: fixed;
        top: 0;
        left: -300px;
        width: 250px;
        height: 100%;
        background-color: rgba(23, 23, 23, 0.9);
        padding: 50px 20px;
        transition: left 0.3s ease;
        z-index: 1000;
    }

    .side-menu.open {
        left: 0;
    }

    .side-menu .mobile-nav-links {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
    }

    .side-menu .mobile-nav-links a {
        display: block;
        padding: 15px;
        text-decoration: none;
        color: #FFFFFF;
        margin-bottom: 10px;
        border-radius: 5px;
        background-color: rgba(0, 0, 0, 0.6);
        transition: background-color 0.3s;
    }

    .side-menu .mobile-nav-links a:hover {
        background-color: rgba(0, 0, 0, 0.9);
    }

    .features-section, .discord-grid {
        flex-direction: column;
        align-items: center;
    }

    .feature-item, .social-card {
        width: 85%;
        max-width: 350px;
        margin: 10px auto;
        text-align: center;
    }

    .hero-section {
        padding: 20px;
        text-align: center;
    }

    #background-video {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }

    .hof-main {
        flex-direction: column;
        padding: 20px 20px;
        gap: 20px;
        margin-bottom: 60px;
    }

    .hof-sidebar {
        width: 100%;
        padding: 15px;
        overflow: visible;
        margin-bottom: 20px;
        flex-grow: 0;
    }

    .hof-sidebar:nth-child(2) {
        margin: 0 auto;
    }

    .hof-sidebar ul {
        display: block;
        flex-direction: column;
        justify-content: flex-start;
    }

    .hof-sidebar ul li {
        display: block;
        height: auto;
        overflow: visible;
    }

    .hof-sidebar ul li span.rank {
        display: inline-block;
    }

    .hof-sidebar:first-child {
        margin-top: 40px;
    }

    .hof-sidebar:last-child {
        margin-bottom: 20px;
    }

    .hof-main {
        flex: 1;
    }

    .hof-footer {
        position: relative;
        margin: 20px 0 20px 0;
        max-width: 300px;
        padding: 10px 20px;
        text-align: center;
        background-color: rgba(23, 23, 23, 0.85);
        color: #ffffff;
        border-radius: 5px;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
    }

    .category-list a, .warp-grid a {
        font-size: 0.9rem;
        padding: 10px 15px;
        border-radius: 8px;
    }

    .category-list {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }

    .category-list li {
        flex: 1 1 45%;
        max-width: 45%;
    }

    .warp-page-container {
        display: block;
        height: auto;
        padding: 20px;
        margin: 20px 20px auto;
        box-sizing: border-box;
        overflow: visible;
    }

    .warp-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
        width: 100%;
    }

    .warp-grid li {
        flex: 1 1 45%;
        max-width: 45%;
        box-sizing: border-box;
    }

    .warp-grid li a {
        padding: 10px 15px;
        font-size: 0.9rem;
        text-align: center;
        display: block;
    }

    .prices-main {
        display: flex;
        position: relative;
        height: 100vh;
        overflow: hidden;
    }

    .chart-container {
        position: absolute;
        top: 0;
        right: -100%;
        width: 100%;
        height: calc(100vh - 50px);
        z-index: 10;
        transition: right 0.3s ease;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 10px;
        box-sizing: border-box;
        border-radius: 10px;
        margin-left: 20px;
        overflow: hidden;
    }

    .chart-container.open {
        right: 0;
		z-index: 110;
		display: flex;
		flex-direction: column;
		height: 100vh;
		padding-bottom:calc(16px + env(safe-area-inset-bottom));
    }

    canvas#priceChart {
        flex-grow: 1;
        max-height: calc(100% - 50px);
        background-color: #151617;
        padding: 0;
		pointer-events:none;
		flex: 1 1 0;
        min-height: 0;
    }

    .price-sidebar {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 20px 0;
        margin: 20px auto; 
        height: 90vh;
        width: 100%;
        box-sizing: border-box;
    }

    .search-container {
        width: 90%;
        max-width: 400px;
        margin: 0 auto 10px auto;
    }

    .price-sidebar ul {
        width: 90%;
        max-width: 400px;
        margin: 0 auto;
        padding: 0;
        overflow-y: auto;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }

    .price-sidebar li {
        margin: 0;
    }

    .price-sidebar li a {
        width: 100%;
    }

    .warning-container {
        width: 90%;
        max-width: 400px;
        margin: 10px auto 0 auto;
    }

    .chart-info {
        height: 50px;
        background-color: rgba(0, 0, 0, 0.7);
        color: #FFF;
        display: flex;
        justify-content: space-around;
        align-items: center;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 10px 0;
        box-sizing: border-box;
        z-index: 20;
		 flex: 0 0 auto;
		margin-bottom:16px;   
    }

    .chart-info-item {
        text-align: center;
        flex: 1;
        font-size: 12px;
    }

    .chart-info-item span {
        display: block;
        font-size: 14px;
        color: #58FA82;
    }

    .chart-info-item.small {
        font-size: 12px;
        color: #CCCCCC;
    }

    .chart-info-item.negative span {
        color: #FF4C4C;
    }

    .close-button {
        position: absolute;
        top: 10px;
        right: 10px;
        background-color: rgba(0, 0, 0, 0.7);
        color: white;
        padding: 5px 10px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        z-index: 120;
        display: block;
		pointer-events:auto;
    }

    .close-button:hover {
        background-color: rgba(0, 0, 0, 0.9);
    }

    .price-sidebar.hidden, .burger.hidden {
        display: none;
    }
}
