body {
  font-family: 'Arial', sans-serif;
  background-image: url("img/background.png");
  color: white;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  width: 100%;
  max-width: 1200px;
  max-height: 500px;
  padding: 20px;
  border-radius: 10px;
  border: 2px solid rgba(190, 190, 190, 0.63);
  box-shadow: inset 0px -40px 40px rgba(0, 0, 0, 0.2), inset 0px 0px 10px rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(30px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.inner-wrapper {
  width: 100%;
  max-height: 400px;
  overflow-y: auto;
  padding-right: 20px;
  box-sizing: content-box;
}

.inner-wrapper::-webkit-scrollbar {
  width: 12px;
}

.inner-wrapper::-webkit-scrollbar-track {
  background: transparent;
}

.inner-wrapper::-webkit-scrollbar-thumb {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
}

.inner-wrapper::-webkit-scrollbar-thumb:hover {
  background-color: white;
  box-shadow: 0 0 15px rgba(255, 255, 255, 1);
}

.container::-webkit-scrollbar {
  width: 12px;
}

.container::-webkit-scrollbar-track {
  background: transparent;
  margin: 10px;
}

.container::-webkit-scrollbar-thumb {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
}

.container::-webkit-scrollbar-thumb:hover {
  background-color: white;
  box-shadow: 0 0 15px rgba(255, 255, 255, 1);
}

h2 {
  text-align: left;
  margin-bottom: 20px;
  font-weight: 300;
}

table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 15px;
  margin-bottom: 20px;
}

thead {
  background-color: transparent;
  border-bottom: 2px solid white;
}

thead th {
  padding: 10px;
  font-weight: 600;
  color: #fff;
  text-align: left;
  border: none;
  top: 0;
  position: sticky;
  z-index: -1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.99);
}

tbody td {
  padding: 10px 0;
  font-weight: 400;
  text-align: left;
  border: none;
}

tbody {
  margin-bottom: 20px;
}

tbody tr:nth-child(even) {
  background-color: rgba(255, 255, 255, 0.05);
}

tbody tr:hover {
  background: linear-gradient(to right, rgba(16, 234, 217, 0.32), rgba(195, 34, 243, 0.29));
  border: 2px solid rgba(16, 234, 217, 0.53);
  box-shadow: 0 0 15px rgba(195, 34, 243, 0.51);
  transition: all 0.4s linear;
  position: relative;
}

tbody tr:hover:before {
  width: 100%;
}

tbody tr:hover:after {
  position: absolute;
  content: '';
  background: linear-gradient(90deg, rgba(57, 181, 199, 0.66) 0%, rgba(192, 80, 244, 0.66) 100%);
  filter: blur(10px);
  border-radius: 5px;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  transition: .4s linear;
  -webkit-transition: .4s linear;
}

tbody td:nth-child(8), tbody td:nth-child(9), tbody td:nth-child(10) {
  color: #ffffff;
}

tbody td:nth-child(9) {
  color: #ffffff;
}

tbody td:nth-child(10) {
  font-weight: 600;
  color: #00FF00;
}

.common-box{
  padding: 16px;
  margin: 0 0 16px;
  background: rgba(2, 6, 13, 0.05);
  box-shadow: inset 0px -40px 40px rgba(0, 0, 0, 0.2), inset 0px 0px 10px rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(30px);
  border-radius: 5px;
  transition: .4s linear;
  -webkit-transition: .4s linear;
}
.common-box:hover{
  background: rgba(2, 6, 13, 0.05);
  box-shadow: inset 0px -40px 40px rgba(0, 0, 0, 0.2), inset 0px 0px 10px rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(40px);
  border-radius: 5px;
}


@media (max-width: 768px) {
  .container {
    max-width: 100%;
    padding: 10px;
  }

  h2 {
    font-size: 1.2rem;
  }

  thead th, tbody td {
    font-size: 0.9rem;
    padding: 8px;
  }

  .inner-wrapper {
    max-height: 300px;
  }
}

@media (max-width: 480px) {
  .container {
    max-width: 100%;
    padding: 5px;
  }

  h2 {
    font-size: 1rem;
  }

  thead th, tbody td {
    font-size: 0.8rem;
    padding: 5px;
  }

  .inner-wrapper {
    max-height: 200px;
  }

  table {
    font-size: 0.8rem;
  }
}
