.schedule-container {
  font-family: Arial, sans-serif;
  padding: 20px;
}

.schedule-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.schedule-btn {
  padding: 10px 15px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.schedule-btn-primary {
  background-color: #006400;
  color: white;
}

.schedule-btn-secondary {
  background-color: #f1f1f1;
  color: #333;
}

.schedule-tab-container {
  display: flex;
  margin-bottom: 20px;
}

.schedule-tab-btn {
  padding: 10px 15px;
  border: none;
  background-color: #f1f1f1;
  cursor: pointer;
}

.schedule-tab-btn.active {
  background-color: #006400;
  color: white;
}

.schedule-content {
  display: none;
}

.schedule-content.active {
  display: block;
}

.schedule-action-buttons {
  margin-bottom: 20px;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
}

.schedule-table th, .schedule-table td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: left;
  
}

.schedule-table th {
  background-color: #f2f2f2;
  font-size: 2px;

}

.schedule-status-ongoing {
  background-color: #90EE90;
  padding: 3px 8px;
  border-radius: 12px;
}

.schedule-action-btn {
  background: none;
  border: none;
  cursor: pointer;
}

.schedule-pagination {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.schedule-pagination-btn {
  margin: 0 5px;
  padding: 5px 10px;
  border: 1px solid #ddd;
  background-color: #f1f1f1;
  cursor: pointer;
}

.schedule-pagination-btn.active {
  background-color: #006400;
  color: white;
}

.schedule-modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.4);
}

.schedule-modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 500px;
}

.schedule-modal-content h2 {
  margin-top: 0;
}

.schedule-modal-content form {
  display: flex;
  flex-direction: column;
}

.schedule-modal-content input,
.schedule-modal-content select {
  margin-bottom: 10px;
  padding: 5px;
}

.schedule-modal-tabs {
  display: flex;
  margin-bottom: 15px;
}

.schedule-modal-tab-btn {
  padding: 8px 15px;
  border: none;
  background-color: #f1f1f1;
  cursor: pointer;
}

.schedule-modal-tab-btn.active {
  background-color: #006400;
  color: white;
}

.schedule-form-actions {
  display: flex;
  justify-content: flex-end;
}

.schedule-form-actions button {
  margin-left: 10px;
}

/* Existing CSS rules */

.schedule-modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.schedule-modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 500px;
}

.schedule-modal-content h2 {
  margin-top: 0;
}

.schedule-modal-tabs {
  display: flex;
  margin-bottom: 15px;
}

.schedule-modal-tab-btn {
  padding: 8px 15px;
  border: none;
  background-color: #f1f1f1;
  cursor: pointer;
}

.schedule-modal-tab-btn.active {
  background-color: #006400;
  color: white;
}

.schedule-form-actions {
  display: flex;
  justify-content: flex-end;
}

.schedule-form-actions button {
  margin-left: 10px;
}

#scheduleTable th{
  font-weight: bold;
  font-size: 15px;
}