/*------------- description-table -----------*/
.centered-table {
  display: flex;
  justify-content: center;
  background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
}

table {
  margin: 25px 0px 50px 0px;
  width: 61%;
  padding: 10px;
  border-radius: 10px;
  border-collapse: collapse;
  box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.25);
}

thead th {
  padding: 20px 10px;
  font-size: 26px;
  font-weight: bold;
  font-family: Georgia, "Times New Roman", Times, serif;
  color: #020202;
  border-radius: 10px 10px 0px 0px;
  background-color: rgba(238, 238, 238, 0.437);
  backdrop-filter: blur(15px);
  text-align: center;
}

tbody tr {
  height: 60px;
}

td {
  font-size: 22px;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  padding: 5px 10px;
  border: 1px solid rgb(224, 221, 221);
  border-left: none;
  border-right: none;
  background: #fff;
}

tbody tr td:first-child {
  font-weight: bold;
  width: 25w;
}

.icon-cell {
  position: relative;
}

.icon-cell i {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  font-size: 24px;
}

/* Media queries for max-width 991px */
@media (max-width: 991px) {
  .centered-table {
    flex-direction: column;
    align-items: center;
  }

  table {
    width: 90%;
    margin: 90px 0px 30px 0px;
    font-size: 18px;
  }

  thead th {
    font-size: 22px;
    padding: 15px 8px;
  }

  tbody tr {
    height: auto;
    display: block;
  }

  td {
    font-size: 18px;
    padding: 8px 8px;
    display: block;
    text-align: left;
    border-left: none;
    border-right: none;
  }

  tbody tr td:first-child {
    width: auto;
    font-weight: bold;
    background: #f0f0f0;
    padding: 10px;
  }

  .icon-cell i {
    position: static;
    transform: none;
    font-size: 20px;
    margin-left: 8px;
  }
}
