.cool-table {
    border-collapse: collapse;
    width: 100%;
  }
  
.cool-table th, .cool-table td {
  border: 1px solid #dddddd;
  text-align: left;
  padding: 8px;
}

.cool-table th {
  background-color: #f2f2f2;
}

.awesome-table th, .awesome-table td {
  border: 1px solid #3498db;
  color: #3498db;
  padding: 10px;
  text-align: center;
  transition: background-color 0.3s, color 0.3s;
}

.awesome-table th {
  background-color: #3498db;
  color: #ffffff;
}

tr.current-row {
  background-color: #f2fdd5;
}

/* th.detail {
} */

/* th.id {
} */

/* th.server {
  width: 80px;
} */

/* th.type {
} */

/* th.typeName {
  width: 140px;
}

th.season {
  width: 40px;
}

th.rounds {
  width: 40px;
}

th.blockStart {
  width: 150px;
}

th.blockEnd {
  width: 150px;
} */

/* th.finish {
} */

/* th.Actions {
  width: 100px;
} */

td select, td input {
  width: 90%;
}

td button {
  margin: px;
  /* margin-right: 4px; */
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  max-width: 90%; /* 親要素の80%までの最大幅 */
  max-height: 80vh; /* 親要素の80%までの最大高さ (viewport heightの80%) */
  overflow-y: auto; /* 高さが親要素より大きい場合にスクロールを有効にする */
}

.close-btn {
  background-color: #ddd;
  padding: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}