/********* card *********/
.card {
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 6px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.card-header{
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 6px 6px 0 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  background-color: rgba(0, 0, 0, 0.75);
}

.card-body {
  flex: 1 1 auto;
  padding: 0.5rem 0.5rem;
  background-color: rgba(0, 0, 0, 0.65);
}


/********* สำหรับ Alert *********/
.card-body.alert{
  padding: 0rem;
  background-color: rgba(0, 0, 0, 0);
}
.alert{
  background-color: rgba(0, 0, 0, 0.65);
  /* border-radius: 6px; */
  border-radius: 0px;
  border: none;
  color: white;
  padding: 0.3rem;
  margin-bottom: 0rem;
}
.card-body.alert .fs{
  font-size: 0.8rem;
}


/********* data table *********/