footer {
  display: flex;
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 80px;
  background-color: #aaaaaa;
  color: white;
  padding: 20px;
  text-align: center;
  z-index: 999;
  box-sizing: border-box;
 }

 .footer_content {
  display: flex;
  gap: 40px;
}
#loading {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  background-color: rgb(255, 255, 255, 0.8);
  padding: 20px;
  border-radius: 8px;
}
.main-content {
  margin-right: calc(100vw - 80%);
  margin-bottom: 100px;
  height: 100%;
  padding-top: 20px;
  padding-left: 20px;
  background-color: rgb(255, 249, 241);
}

.main-content-admin {
  margin-top: 80px;
  margin-bottom: 80px;
  padding-left: 20px;
  background-color: #dcecff;
  overflow-y: auto;
  flex-grow: 1;
}

.navbar-admin {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: #82baff;
  overflow: auto;
  z-index: 990;
}

.nav-item-admin {
  width: 15vw;
  height: 80px;
  color: black;
  text-decoration: none;
  background-color: rgb(199, 199, 199);
  border-top-right-radius: 1rem;
  border-top-left-radius: 1rem;
  margin: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: bold; 
}

.nav-item-admin.active {
  background-color: #a9cfff;
}

.admin-user_name {
  font-weight: bold;
  font-size: 1rem;
}
.schedule-table {
  border: 1px solid;
}

.schedule-table td, .schedule-table th {
  border: 1px solid;
}

.schedule-table tr:nth-child(odd) td {
  background-color: aqua;
}

.schedule-archived-table {
  border: 1px solid;
}

.schedule-archived-table td, .schedule-archived-table th {
  border: 1px solid;
}

.schedule-archived-table tr:nth-child(odd) td {
  background-color: aqua;
}
.sidebar {
  width: calc(100vw - 80%);
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  background-color: rgb(255, 236, 213);
  z-index: 990;
}

.nav-item {
  width: 90%;
  height: 60px;
  margin-top: 20px;
  color: black;
  text-decoration: none;
  background-color: rgb(199, 199, 199);
  border-top-right-radius: 1rem;
  border-bottom-right-radius: 1rem;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: bold; 
}

.nav-item.active {
  background-color: rgb(255, 192, 114);
}

.nav-item-logout {
  width: 90%;
  height: 60px;
  padding: 5px;
  margin-top: 20px;
  border-top-right-radius: 1rem;
  border-bottom-right-radius: 1rem;
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *



 */
 html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

.terms-container {
  overflow-y: auto;
  border: 1px solid;
  width: calc(100% - 20px);
  height: 450px;
  margin:10px;
}

.agree-checkbox {
  color: red;
  font-size: 1.1rem;
}
