    :root {
  --bg: #0f1115;
  --card: #0b0d10;
  --muted: #9aa4a6;
  --accent: #24d7a1;
  --glass: rgba(255, 255, 255, 0.03);
}

html, body {
  height: 100%;
  margin: 0;
  font-family: Inter, Poppins, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background: var(--bg);
  color: #fff;
  margin: 0;
  padding: 0;
}

.wrap {
  max-width: 90%;
  margin: 0px auto;
  padding: 20px;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: space-between;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
  margin-right: 10px;
  margin-top: 0;
}

hr{
  color: var(--muted);
  background: var(--muted);
  opacity: 20%;
  width: 100%;
  align-items: center;
}
.logo{
  width: 150px;
  height: 70px;
}
nav ul {
 list-style: none;
 display: flex;
 gap: 50px;
 font-size: 15px;
 margin-top: 30px;
  margin-right: 30px;
}

nav ul li a {
      text-decoration: none;
      color: white;
      transition: color 0.3s;
}

nav ul li a:hover {
      color: #24d7a1;
}
nav ul li a:active {
      color: #24d7a1;
}

#tableContainer{
  width: 100%;
}

@media (max-width: 900px) {
nav ul {
  gap: 10px;
  }
  .wrap{
    max-width: 100%;
  }
  .grid {
    flex-direction: column;
    width: 100%;
  }
  .headline .aboutp{
  justify-content: center;
  align-items: center;
  margin-bottom: 21px;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
  width: 100%;
  }
    }
  @media (max-width: 485px) {
  .grid {
    flex-direction: column;
    width: 100%;
    max-width: 100%;
  }
  nav ul {
  display: none;
  gap: 10px;
  }
  .headline{
    width: 100%;
  }
  #breakdownChart{
    width: 300px;
    height: 200px;
  }
  .container{
    max-width: 100%;
  }
  .heading {
    font-size: 50px;
  }
  .para{
    width: 100%;
  }
    .headline h1{
    width: 300px;
  }
    }
  @media (width: 414px) {
  .grid {
    flex-direction: column;
    width: 100%;
    max-width: 100%;
  }
  .headline{
   width: 100%;
   justify-content: center;
  }

  }


        @keyframes glow {
            from { box-shadow: 0 0 10px #00ffaa; }
            to { box-shadow: 0 0 20px #00ffc3; }
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        @media (max-width: 780px) {
            .input-container input,
            .input-container button {
                width: 90%;
            }
            #tableContainer{
             width: 780px;
             overflow-y: scroll;
            }

            .sidebar{
                display: block;
            }
            .sidebar.show{
                right: 1;
            }
            .header2{
                display: flex;
            }
            .left, .right, .bottom-left, .bottom-right {
                flex: 1 1 100%;
                max-width: 100%;
            }
            .bottom-section {
                flex-direction: column;
            }
            h1{
                font-size: 35px;
            }
            .p{
                text-align: justify;
            }
            br{
                display: none;
            }
            .bottom-right{
                flex: 1;
                min-width: 200px;
                overflow: scroll;
            }
            table{
                width: 200px;
                overflow: scroll;
            }
            .table-container{
                min-width: 200px;
                max-width: 300px;
            }
            .bottom-section-2 {
                flex-direction: column;
                align-items: stretch;
            }
            .bottom-left-2, .bottom-right-2 {
                text-align: center;
                margin-top: 10px;
            }
            .goback{
                width: 80%;
            }
            .download{
                width: 80%;
            }
            .popup{
                width: 80%;
            }

        }

        .menu-toggle {
            font-size: 28px;
            cursor: pointer;
            margin: 40px;
        }
        .header2{
            display: none;
        }
        .sidebar {
            position: fixed;
            top: 0;
            right: -300px;
            height: 100%;
            width: 250px;
            background-color: b ;
            color: white;
            background-color: #0f1115;
            padding-top: 60px;
            transition: right 0.3s ease;
            z-index: 999;
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
        }

        .sidebar.show {
            right: 0;
        }

        .nav-links {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 20px;
            padding: 20px;
        }

        .nav-links li a {
            color: white;
            text-decoration: none;
            font-size: 16px;
            transition: color 0.3s;
        }

        .nav-links li a:hover {
            color: #24d7a1;
        }

.popup {
    position: fixed;
    font-size: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #1a1a1a;
    color: white;
    padding: 20px;
    border-radius: 0px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    z-index: 1001;
    text-align: center;
    display: none;
    padding-top: 40px;
    padding-bottom: 40px;
}

.popup input[type="email"] {
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #333;
    border-radius: 4px;
    background-color: #222;
    color: white;
    width: 80%;
    box-sizing: border-box;
    
}

.popup button {
    padding: 10px 20px;
    background-color: #ffffff;
    color: #1a1a1a;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: background-color 0.3s ease;
    width: 80%;
}

.popup button:hover {
    background-color: #b3b3b3;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
    
}
#charts{
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
}