.modal-container {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  width: calc(100% - 40px);
  max-width: 800px;
  height: calc(100% - 40px);
  max-height: 90vh;
  margin: 20px auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: 'Roboto', sans-serif;
  box-sizing: border-box;
  overflow: hidden;
}

.modal-title {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #333;
  border-bottom: 2px solid #eee;
  padding-bottom: 10px;
}

.modal-content {
  flex-grow: 1;
  overflow-y: auto;
  padding: 10px;
  max-height: calc(100vh - 200px);
}

.modal-content p {
  margin: 10px 0;
  font-size: 1em;
  color: #555;
}

.script-display {
  margin-top: 20px;
  background-color: #282c34;
  color: #ffffff;
  padding: 15px;
  border-radius: 8px;
  font-size: 1.2em;
  overflow: auto;
  max-height: 300px;
  white-space: pre-wrap;
  word-wrap: break-word;
}

.button-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
  padding: 10px;
}

.button-row button {
  margin-left: 10px;
}

.primary-button {
  background-color: #007bff;
  color: white;
  border-radius: 5px;
}

.accent-button {
  background-color: #17a2b8;
  color: white;
  border-radius: 5px;
}

.primary-button:hover,
.accent-button:hover,
.cancel-button:hover {
  opacity: 0.9;
}

.additional-section {
  margin-top: 20px;
  padding: 20px;
  border-radius: 10px;
  background-color: #f9f9f9;
}

.schedule-container {
  display: flex;
  gap: 15px
}

mat-checkbox {
  margin-left: 20px;
}
