.dataset-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  font-family: sans-serif;
}

.dataset-table th,
.dataset-table td {
  border: 1px solid #ccc;
  padding: 7px;
  text-align: left;
  vertical-align: top;
}

.dataset-table th {
  background-color: #a8fdac;
  font-weight: bold;
}

.dataset-table td a {
  color: #007bff;
  text-decoration: none;
}

.dataset-table tbody tr {
  cursor: pointer;
}

.dataset-table tbody tr * {
  cursor: pointer;
}

.dataset-table tbody tr:hover {
  background-color: #f0f8ff; /* светло-синий оттенок */
}

.dataset-table th * {
  cursor: pointer;
}

  .format-label {
    cursor: pointer;
  }
  
  .format-label input[type="checkbox"] {
    cursor: pointer;
  }

.dataset-table input[type="checkbox"] {
  transform: scale(1.2);
}

tr.selected {
  background-color: #e6f3ff;
}

.dataset-table th:nth-child(1),
.dataset-table td:nth-child(1) {
  width: 40px;
  text-align: center;
}

.dataset-table th:nth-child(2),
.dataset-table td:nth-child(2) {
  width: 150px;
  text-align: left;
}

.dataset-table th:nth-child(3),
.dataset-table td:nth-child(3) {
  width: 60px;
  text-align: center;
}

.dataset-table th:nth-child(4),
.dataset-table td:nth-child(4) {
  width: 100px;
  text-align: center;
}

.dataset-table-wrapper {
  overflow-x: auto;
}

.total-amount {
  font-size: 24px;
  font-weight: bold;
  color: #008000;
  text-align: center;
  padding: 10px 20px;
  margin: 30px auto 10px;
  border: 2px dashed #90ee90;
  border-radius: 8px;
  background-color: #f6fff6;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  white-space: nowrap;
}

.b-button {
    margin-bottom: 100px;
}


.alert_content {
    max-width: 900px;
    margin: auto;
    padding: 8px;
    margin-bottom: 10px;
    background-color: #e5ede2;
}