.modal {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}
.modal.hidden {
  display: none;
}
.modal-content {
  background: #1f2d3d;
  padding: 20px;
  border-radius: 8px;
  width: 1200px;
  max-height: 600px;
  color: #fff;
}
.modal-content textarea {
  width: 100%;
  padding: 10px;
  background: #101828;
  color: #fff;
  border: 1px solid #2c3e50;
  border-radius: 4px;
}
.modal-actions {
  margin-top: 15px;
  text-align: right;
}
.modal-actions .btn {
  margin-left: 10px;
}
.table-scroll {
  max-height: 200px;
  overflow-y: auto;
  border: 1px solid #444;
}
.table-scroll table {
  width: 100%;
  border-collapse: collapse;
}
.table-scroll th,
.table-scroll td {
  padding: 8px;
  border-bottom: 1px dotted #666;
  text-align: left;
  color: #eee;
}
