@charset "UTF-8";
@font-face {
  font-family: "Nunito";
  src: url("/static/fonts/Nunito-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("/static/fonts/Roboto-VariableFont_wdth,wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
* {
  font-family: Roboto, sans-serif;
  box-sizing: border-box;
}

html {
  background-color: #f5f4f0;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0.1em 0;
  font-family: Nunito, sans-serif;
}

hr {
  background-color: #eeeeee;
  height: 2px;
  border: none;
}

li {
  font-family: Roboto, sans-serif;
}

.text-primary {
  color: #833471;
}

.text-info {
  color: #3498db;
}

.text-warn {
  color: #f1c40f;
}

.text-error {
  color: #e74c3c;
}

.text-muted {
  color: #666666;
}

.card {
  border: 2px solid #eeeeee;
  border-radius: 16px;
  padding: 1em;
  background-color: white;
}

.shadow {
  box-shadow: 2px 3px 7px 0px rgba(177, 177, 177, 0.75);
}

header nav {
  margin: 1em auto;
  padding: 0;
  background-color: white;
  border: 2px solid #eeeeee;
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 98%;
}
header nav > a {
  font-family: Nunito, sans-serif;
  font-size: 2em;
  color: #833471;
  text-decoration: none;
}
header nav > a h3 {
  margin: 0;
  padding: 0.1em 0 0.1em 0.4em;
}
header nav ul {
  display: flex;
  list-style: none;
  margin: 0 1em;
  padding: 0;
  gap: 1rem;
}
header nav li a {
  font-family: Roboto, sans-serif;
  color: #833471;
  text-decoration: none;
  font-size: 1em;
  position: relative;
  display: inline-block;
}
header nav li a[aria-current=page] {
  color: rgb(112.7459016393, 44.7540983607, 97.2540983607);
}
header nav li a[aria-current=page]::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 10%;
  right: 10%;
  height: 2px;
  background-color: #833471;
  border-radius: 10px;
}

main.layout_with_menu {
  display: grid;
  grid-template-columns: 350px 1fr;
  width: 100%;
  margin: 0 auto 0 auto;
  max-width: 1200px;
  gap: 1em;
}
main.layout_only_content {
  max-width: 900px;
  width: 100%;
  margin: 0 auto 0 auto;
}
main {
  margin: 0 auto;
}
main #side_menu {
  border-right: 2px solid #eeeeee;
  padding: 1em;
  font-family: Roboto, sans-serif;
}
main #side_menu b {
  font-family: Nunito, sans-serif;
}
main #side_menu ul {
  margin: 0;
  padding: 0;
  gap: 1rem;
  list-style: none;
}
main #side_menu ul li {
  margin: 0;
  padding: 0;
}
main #side_menu li a {
  display: block;
  text-decoration: none;
  color: rgb(63.75, 63.75, 63.75);
  padding: 0.2rem 0.3rem 0 0;
  position: relative;
  max-width: 100%;
  width: 100%;
}
main #side_menu li a.text-primary {
  color: #833471;
}
main #side_menu li a.text-info {
  color: #3498db;
}
main #side_menu li a.text-warn {
  color: #f1c40f;
}
main #side_menu li a.text-error {
  color: #e74c3c;
}
main #side_menu li a.text-muted {
  color: #666666;
}
main #side_menu li a:hover {
  background-color: rgb(234.8, 232.78, 224.7);
}
main #side_menu li a::after {
  position: absolute;
  right: 0;
  top: 10%;
  bottom: 10%;
  content: "›";
  color: black;
}
main #side_menu li a.arrow_left::before {
  position: absolute;
  left: -12px;
  top: 10%;
  bottom: 10%;
  content: "‹";
  color: black;
}
main #side_menu li a.arrow_left::after {
  content: none;
}

table {
  width: 100%;
  border: 1px solid #eeeeee;
  border-collapse: collapse;
}
table th, table td {
  border: 1px solid #eeeeee;
  padding: 0.5em;
}
table th {
  border-bottom: 2px solid #eeeeee;
}
table tr {
  cursor: pointer;
}
table tr:hover {
  background-color: #eeeeee;
}

dialog {
  position: fixed;
  inset: 0;
  margin: auto;
  padding: 1.5rem;
  border: 2px solid #eeeeee;
  border-radius: 16px;
  max-width: 700px;
}
dialog::backdrop {
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}
dialog:not([open]) {
  display: none;
}

div.alert-error {
  border: 2px solid #e74c3c;
  border-radius: 10px;
  padding: 1em;
  padding-left: 50px;
  margin: 0.5em 0;
  background-color: rgb(250.5616438356, 221.897260274, 218.9383561644);
  position: relative;
  color: rgb(145.5821917808, 29.8630136986, 17.9178082192);
}
div.alert-error::before {
  border-radius: 4px 0 0 4px;
  content: "⚠️";
  background-color: #e74c3c;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
div.alert-error button {
  position: absolute;
  background: none;
  border: none;
  right: 0.5em;
  top: 0.5em;
  color: rgb(145.5821917808, 29.8630136986, 17.9178082192);
  cursor: pointer;
}

div.alert-warn {
  border: 2px solid #f1c40f;
  border-radius: 10px;
  padding: 1em;
  padding-left: 50px;
  margin: 0.5em 0;
  background-color: rgb(250.8385826772, 237.4625984252, 183.6614173228);
  position: relative;
  color: rgb(121.4173228346, 98.6515748031, 7.0826771654);
}
div.alert-warn::before {
  border-radius: 4px 0 0 4px;
  content: "🔎";
  background-color: #f1c40f;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
div.alert-warn button {
  position: absolute;
  background: none;
  border: none;
  right: 0.5em;
  top: 0.5em;
  color: rgb(121.4173228346, 98.6515748031, 7.0826771654);
  cursor: pointer;
}

div.alert-info {
  border: 2px solid #3498db;
  border-radius: 10px;
  padding: 1em;
  padding-left: 50px;
  margin: 0.5em 0;
  background-color: rgb(203.6129707113, 228.9267782427, 245.8870292887);
  position: relative;
  color: rgb(21.6150627615, 81.6569037657, 121.8849372385);
}
div.alert-info::before {
  border-radius: 4px 0 0 4px;
  content: "👉";
  background-color: #3498db;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
div.alert-info button {
  position: absolute;
  background: none;
  border: none;
  right: 0.5em;
  top: 0.5em;
  color: rgb(21.6150627615, 81.6569037657, 121.8849372385);
  cursor: pointer;
}

.btn-primary, .btn-secondary, .btn-warn, .btn-error {
  padding: 0.5rem;
  border-radius: 6px;
  cursor: pointer;
}
.btn-primary[disabled], .btn-secondary[disabled], .btn-warn[disabled], .btn-error[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.btn-primary {
  background-color: rgb(167.5081967213, 66.4918032787, 144.4918032787);
  color: white;
  border: 1px solid #833471;
}
.btn-primary:hover:not([disabled]) {
  background-color: rgb(149.2540983607, 59.2459016393, 128.7459016393);
}

.btn-secondary {
  background-color: rgb(224.6, 221.56, 209.4);
  color: #333333;
  border: 2px solid #eeeeee;
}
.btn-secondary:hover:not([disabled]) {
  background-color: rgb(214.4, 210.34, 194.1);
}

.btn-warn {
  background-color: rgb(243.811023622, 207.8464566929, 63.188976378);
  color: white;
  border: 1px solid #f1c40f;
}
.btn-warn:hover:not([disabled]) {
  background-color: rgb(242.405511811, 201.9232283465, 39.094488189);
}

.btn-error {
  background-color: rgb(236.5890410959, 117.6849315068, 105.4109589041);
  color: white;
  border: 1px solid #e74c3c;
}
.btn-error:hover:not([disabled]) {
  background-color: rgb(233.7945205479, 96.8424657534, 82.7054794521);
}

label {
  display: block;
  font-weight: 500;
  margin: 0.5rem 0;
}

input[type=text],
input[type=password],
input[type=email],
textarea {
  width: 100%;
  border: 2px solid #eeeeee;
  border-radius: 6px;
  font-size: 1rem;
  box-sizing: border-box;
  padding: 0.3rem;
  background-color: rgb(238.88, 237.268, 230.82);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
input[type=text]:focus,
input[type=password]:focus,
input[type=email]:focus,
textarea:focus {
  outline: none;
  border-color: #833471;
  box-shadow: 0 0 0 3px rgba(131, 52, 113, 0.15);
}
input[type=text][disabled],
input[type=password][disabled],
input[type=email][disabled],
textarea[disabled] {
  background-color: rgb(224.6, 221.56, 209.4);
  cursor: not-allowed;
  opacity: 0.6;
}

input[type=text].clean {
  background-color: transparent;
  border: none;
  border-bottom: 2px solid #eeeeee;
}
input[type=text].clean:focus {
  border: none;
}

input[type=checkbox],
input[type=radio] {
  margin: 1rem 0;
  width: 1rem;
  height: 1rem;
  cursor: pointer;
  accent-color: #833471;
}
input[type=checkbox] + label,
input[type=radio] + label {
  padding-left: 0.2rem;
  display: inline;
}

ul.tabbed-menu {
  margin: 1rem 0 0 0;
  padding: 0;
  display: flex;
  list-style: none;
}
ul.tabbed-menu li a {
  padding: 0.2rem 1rem;
  border: 2px solid #eeeeee;
  border-bottom: none;
  border-radius: 16px 16px 0 0;
  text-decoration: none;
  color: rgb(76.5, 76.5, 76.5);
  font-family: Nunito, sans-serif;
  background-color: rgb(249.9, 249.9, 249.9);
  display: block;
  transition: background-color 0.15s ease;
}
ul.tabbed-menu li a:hover {
  background-color: white;
}
ul.tabbed-menu li a.active {
  background-color: white;
  border-bottom: 2px solid white;
}

.tabbed-content {
  margin: 0;
  margin-top: -2px;
  padding: 1rem;
  border: 2px solid #eeeeee;
  background-color: white;
}

.badge-info {
  background-color: rgb(203.6129707113, 228.9267782427, 245.8870292887);
  color: #3498db;
  padding: 0.1rem 0.4rem;
  border-radius: 8px;
  border: 2px solid rgb(138.6359832636, 195.9581589958, 234.3640167364);
  font-weight: 700;
}

.badge-warn {
  background-color: rgb(250.8385826772, 237.4625984252, 183.6614173228);
  color: #f1c40f;
  padding: 0.1rem 0.4rem;
  border-radius: 8px;
  border: 2px solid rgb(246.6220472441, 219.6929133858, 111.3779527559);
  font-weight: 700;
}

.input-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.input-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.input-group label {
  font-size: 0.8125rem;
  font-family: Nunito, sans-serif;
  font-weight: 500;
  color: black;
  margin: 0;
}
.input-group input[type=search],
.input-group select {
  min-width: 160px;
  height: 36px;
  padding: 0 10px;
  border: 1px solid #eeeeee;
  border-radius: 6px;
  background-color: #f5f4f0;
  color: black;
  font-size: 0.875rem;
  font-family: Roboto, sans-serif;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.input-group input[type=search]:hover:not(:disabled),
.input-group select:hover:not(:disabled) {
  border-color: rgb(199.75, 199.75, 199.75);
}
.input-group input[type=search]:focus,
.input-group select:focus {
  outline: none;
  border-color: #833471;
  box-shadow: 0 0 0 3px rgba(131, 52, 113, 0.15);
}
.input-group input[type=search]:disabled,
.input-group select:disabled {
  background-color: rgb(234.8, 232.78, 224.7);
  color: rgb(127.5, 127.5, 127.5);
  cursor: not-allowed;
  opacity: 0.6;
}
.input-group select {
  padding-right: 28px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
}

.content-section {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
}
.content-section span {
  white-space: nowrap;
  text-transform: uppercase;
  color: rgb(89.25, 89.25, 89.25);
}
.content-section .line {
  flex: 1;
  height: 2px;
  background: #eeeeee;
}
.content-section div {
  display: flex;
  align-items: center;
}

.course_cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

.course_card {
  cursor: pointer;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  background-color: white;
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.course_card canvas {
  height: 80px;
  width: auto;
  display: block;
}
.course_card div.content {
  padding: 0.5rem 1.5rem 0.7rem 1.5rem;
}
.course_card div.title {
  font-family: Nunito, sans-serif;
  font-weight: 600;
}
.course_card div.meta {
  font-size: 12px;
  padding-top: 0.2rem;
  color: rgb(89.25, 89.25, 89.25);
}
.course_card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

ul#selected_users {
  padding: 0;
  margin: 0;
  max-width: 200px;
  list-style: none;
}
ul#selected_users li {
  border: 1px solid #833471;
  border-radius: 4px;
  padding: 0.1rem;
  margin-bottom: 0.3rem;
}

div#smart_select_results ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
div#smart_select_results li {
  border: 2px dotted #eeeeee;
  border-radius: 4px;
  padding: 0.1rem;
}
div#smart_select_results li:hover {
  border: 2px solid #eeeeee;
  background-color: #f5f4f0;
}

div.task_container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}
div.task_container > div {
  border: 2px solid #eeeeee;
  padding: 1rem;
  border-radius: 16px;
  align-items: center;
  cursor: pointer;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
div.task_container > div:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

div.upload_item {
  padding: 0.4rem;
  border: 2px solid #eeeeee;
  border-radius: 16px;
  display: flex;
  align-items: center;
  margin-top: 0.2rem;
  margin-bottom: 0.2rem;
  gap: 0.4rem;
}
div.upload_item a {
  color: #833471;
  font-size: 1rem;
}
div.upload_item svg {
  color: rgb(89.25, 89.25, 89.25);
}

div.agenda_notification_list {
  display: flex;
  gap: 1rem;
}
div.agenda_notification_list div {
  width: 1px;
  align-self: stretch;
  background-color: #833471;
  position: relative;
}
div.agenda_notification_list div::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #833471;
  border-radius: 50%;
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
}
div.agenda_notification_list span.date_time {
  flex: 0 0 12%;
}
div.agenda_notification_list span {
  padding: 0 0 2rem 0;
}

/*# sourceMappingURL=style.css.map */
