.dsm-wrap {
  max-width: 1000px;
  margin: auto;
  padding: 20px;
}

.dsm-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  padding: 20px;
}

.dsm-title {
  font-size: 24px;
  margin-bottom: 15px;
}

.dsm-search input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  margin-bottom: 15px;
}

.dsm-results {
  margin-bottom: 10px;
  font-size: 14px;
  color: #555;
}

.dsm-table-wrap {
  width: 100%;
}

.dsm-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.dsm-table th {
  text-align: left;
  background: #f5f5f5;
  padding: 12px;
}

.dsm-table td {
  padding: 12px;
  border-bottom: 1px solid #eee;
}

.dsm-table td,
.dsm-table th {
  word-break: break-word;
}

.dsm-table tr:hover {
  background: #fafafa;
}

.dsm-btn {
  background: #003c6d;
  color: white;
  padding: 7px 12px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 13px;
}

.dsm-btn:hover {
  background: #002c50;
}
@media (max-width: 800px) {

  .dsm-table thead {
    display: none;
  }

  .dsm-table,
  .dsm-table tbody,
  .dsm-table tr,
  .dsm-table td {
    display: block;
    width: 100%;
  }

  .dsm-table tr {
    margin-bottom: 18px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 12px;
  }

  .dsm-table td {
    border: none;
    padding: 8px 0;
  }

  .dsm-table td::before {
    content: attr(data-label);
    display: block;
    font-weight: 700;
    margin-bottom: 4px;
    color: #555;
  }

}