 body {
      margin: 0;
      font-family: Arial, sans-serif;
      background: #2b2c3738;
    }

    /* ===== ORIGINAL HEADER STYLES (RESTORED) ===== */
    .group {
      display: flex;
      align-items: center;
      position: relative;
      max-width: 320px;
      margin-bottom: 15px;
    }

    .input {
      font-family: 'Montserrat', sans-serif;
      width: 100%;
      height: 45px;
      padding-left: 2.5rem;
      border-radius: 12px;
      border: none;
      outline: none;
      background-color: #16171d;
      color: #bdbecb;
      box-shadow: 0 0 0 1.5px #2b2c37;
    }

    .input::placeholder {
      color: #bdbecb;
    }

    .search-icon {
      position: absolute;
      left: 1rem;
      width: 1rem;
      height: 1rem;
      fill: #bdbecb;
    }

    /* ===== TABLE STYLES ===== */
    main {
      padding: 20px;
    }

    .table-wrapper {
      width: 100%;
      overflow-x: auto;
    }

    .responsive-table {
      width: 100%;
      border-collapse: collapse;
      min-width: 900px;
      border-radius:10px ;
    }

    .responsive-table thead {
      background: #2B3044;
      color: white;
    }

    .responsive-table th,
    .responsive-table td {
      padding: 10px;
      border: 1px solid #ddd;
      text-align: left;
      font-size: 14px;
     
    }

    .responsive-table tbody tr:nth-child(even) {
      background: #f9f9f9;
    }

    .responsive-table strong {
      color: #2B3044;
    }

    /* ===== MOBILE CARD MODE ===== */
    @media (max-width: 900px) {

      .responsive-table {
        min-width: unset;
        border: 5px solid #ddd;
        
        
      }

   

      }
      .responsive-table thead,
      .responsive-table tbody,
      .responsive-table th,
      .responsive-table td,
      .responsive-table tr{
        padding right:  1rem;
        background: grey;
      }

      .responsive-table thead {
        display: none;
      }

      .responsive-table tr {
        background: #fff;
        margin-bottom: 10px;
        border-radius: 8px;
        box-shadow: 0 2px 6px rgba(0,0,0,.08);
        padding: 8px 10px;
      }

      .responsive-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 6px 2px;
        border: none;
        border-bottom: 1px dashed #eee;
        font-size: 13px;
      }

      .responsive-table td::before {
        content: attr(data-label);
        font-weight: 600;
        color: #2B3044;
        margin-right: 10px;
        white-space: nowrap;
      }

      .responsive-table td:last-child {
        border-bottom: none;
      }
    tbody tr{
      background-color: #866ee7;
      border:1rem solid transparent;
      border-radius: 1px;
    }
   /* ========home button style=======*/
   /* From Uiverse.io by satyamchaudharydev */ 
.button {
  position: relative;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  padding-block: 0.5rem;
  padding-inline: 1.25rem;
  background-color: rgb(0 107 179);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffff;
  gap: 10px;
  font-weight: bold;
  border: 3px solid #ffffff4d;
  outline: none;
  overflow: hidden;
  font-size: 15px;
  cursor: pointer;

  margin-top: 1rem;
  text-decoration: none;
}

.icon {
  width: 24px;
  height: 24px;
  transition: all 0.3s ease-in-out;
}

.button:hover {
  transform: scale(1.05);
  border-color: #fff9;
}

.button:hover .icon {
  transform: translate(4px);
}

.button:hover::before {
  animation: shine 1.5s ease-out infinite;
}

.button::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100%;
  background-image: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0) 70%
  );
  top: 0;
  left: -100px;
  opacity: 0.6;
}

@keyframes shine {
  0% {
    left: -100px;
  }

  60% {
    left: 100%;
  }

  to {
    left: 100%;
  }
}
