.trust-mark-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.trust-mark-row {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 12px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.trust-mark-type {
  font-weight: 600;
  word-break: break-all;
}

.trust-mark-meta {
  color: #6b7280;
  font-size: 0.9rem;
}

.trust-mark-status.valid {
  color: #15803d;
  font-weight: 600;
}

.trust-mark-status.invalid {
  color: #b91c1c;
  font-weight: 600;
}

.trust-mark-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

.trust-mark-modal-content {
  background: #fff;
  margin: 100px auto;
  padding: 30px;
  width: 90%;
  max-width: 500px;
  border-radius: 8px;
}

.trust-mark-modal label {
  display: block;
  margin-bottom: 6px;
}

.trust-mark-modal select,
.trust-mark-modal input {
  width: 100%;
  padding: 8px;
  box-sizing: border-box;
}

.trust-mark-modal .form-row {
  margin-bottom: 15px;
}

.trust-mark-modal .form-actions {
  display: flex;
  gap: 10px;
}

.trust-mark-modal .btn-submit {
  background: #28a745;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.trust-mark-modal .btn-cancel {
  background: #6c757d;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.trust-mark-modal .request-status {
  display: none;
  padding: 10px;
  margin: 10px 0;
  border-radius: 4px;
}
