table {
  width: 100%;
  border-collapse: separate; /* must be 'separate' for border-radius to work */
  border-spacing: 0;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* 👈 Small soft shadow */
  outline: none !important;
}

/* Round top corners */
thead tr:first-child th:first-child {
border-top-left-radius: 10px;
}
thead tr:first-child th:last-child {
border-top-right-radius: 10px;
}

/* Round bottom corners */
tbody tr:last-child td:first-child {
border-bottom-left-radius: 10px;
}
tbody tr:last-child td:last-child {
border-bottom-right-radius: 10px;
}

thead {
background-color: #666;
color: #fff;
}

th, td {
padding: 12px;
text-align: left;
border: 0.5px solid #f3f3f3;
outline: none !important;

}

tr.description-row {
display: none;
background-color: #f9f9f9;
}

tr.description-row td {
  font-size: 15px;
  color: #81868a;
  /* font-weight: 500; */
  margin: 0;
  margin-bottom: 30px;
  padding: 30px 34px;
  text-align: justify;
  line-height: 28px;
}

.btn {
  font-size: 14px;
letter-spacing: 0.5px;
  background: rgb(231,164,38);
  background: linear-gradient(0deg, rgba(231,164,38,1) -20%, rgba(161,30,33,1) 100%);
color: white;
padding: 6px 12px;
text-decoration: none;
border: none;
border-radius: 4px;
cursor: pointer;
}


.btn:hover {
  background: #333;
  -webkit-transition: color .6s ease !important;
  transition: color .6s ease !important;
  color: #fff;
}

.toggle-btn {
  font-size: 14px;
letter-spacing: 1px;
  background: rgb(231,164,38);
  background: linear-gradient(0deg, rgba(231,164,38,1) -20%, rgba(161,30,33,1) 100%);
  color: white;
text-decoration: none;
border: none;
border-radius: 4px;
cursor: pointer;
outline: none !important;
}

.toggle-btn:hover {
  background: #333;
  -webkit-transition: color .6s ease !important;
  transition: color .6s ease !important;
  color: #fff;
}

.withbtn{
  width: 170px;
  text-align: center;
}



@media (max-width: 600px) {
  table, thead, tbody, th, td, tr {
    display: block;
  }

  thead {
    display: none;
  }

  tr {
    margin-bottom: 15px;
  }

  td {
    border: none;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 50%;
  }

  td::before {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 45%;
    padding-right: 10px;
    white-space: nowrap;
    font-weight: bold;
    content: attr(data-label);
  }
}