.accordion-btn {
  background: #f3f7fd;
  padding: 14px;
  width: 100%;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  color: #086d7a;
  border: none;
}
.icon {
  transition: 0.3s;
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 14px;
}
.accordion-content p {
  margin: 10px 0;
  color: #555;
}
.active .icon {
  transform: rotate(90deg);
}
.mytable {
  border-collapse: collapse;
  width: 100%;
  font-family: Arial, sans-serif;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.mytable th,
.mytable td {
  padding: 12px 15px;
  vertical-align: middle;
  border: 1px solid #e0e0e0;
}
.mytable th {
  background-color: #f8f9fa;
  font-weight: 600;
}
.mytable tr:nth-child(even) {
  background-color: #f9f9f9;
}
.mytable tr:hover {
  background-color: #f1f1f1;
}
.min-w-400 {
  min-width: 400px;
  text-align: start;
  white-space: pre-wrap;
  word-break: break-word;
}
.check-icon {
  color: #086d7a;
}
.cross-icon {
  color: #98a2b3;
}
