<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* ==========================================================================
   Utility
   ========================================================================== */
   
/* Datepicker */

.ui-datepicker {
	z-index:9 !important;
}   

/* Tables */ 

.table-viewport {
  position: relative;
  width: 100%;
  max-height: 600px;
  overflow: scroll;
}

.table-viewport + .table-viewport {
  margin-top: 64px;
}

table.teacher-dashboard {
  min-width: 100%;
  white-space: nowrap;
  table-layout: fixed;
}

table.teacher-dashboard th {
  position: sticky;
  top: 0;
  z-index: 1;
}

table.teacher-dashboard th:first-child,
table.teacher-dashboard td:first-child {
  position: sticky;
  left: 0;
  z-index: 2;
}

table.teacher-dashboard th:first-child {
  z-index: 3;
}

/* Tooltips */ 

.tooltip-box {
  position: relative;
  display: inline-block;
  cursor: pointer;
  height: 80px;
  z-index:0;
}

.tooltip-box .tooltip-text {
  visibility: hidden;
  width: auto;
  background-color: black;
  color: #fff;
  text-align: center;
  padding: 6px;
  position: absolute;
  left: 0;
  bottom: 5px;
  z-index: 1;
}

.tooltip-box:hover .tooltip-text {
  visibility: visible;
}

/* Modals */ 



@media only screen and (max-width:1092px) {
  .edit_inputs_container div {
    width: 90%;
    display: inline-flex;
    flex-direction: column;
    margin: 2%;
  }
  
  .edit_inputs_container{
    height: 80%;
    overflow: auto;
  }
}


/* ==========================================================================
   Teacher Dashboard
   ========================================================================== */
   
.page-template-teacher-dashboard #date-selector {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.page-template-teacher-dashboard #date-selector label {
  display: block;
  white-space: nowrap;
  margin-right: 8px;
}

.page-template-teacher-dashboard #date-selector #datepicker {
  width: auto;
  flex-grow: 1;
}

.page-template-teacher-dashboard #date-selector input[type="submit"] {
  white-space: nowrap;
  margin-left: 8px;
}

.page-template-teacher-dashboard #class-list {
  margin-top: 64px;
}


/* ==========================================================================
   Single Class
   ========================================================================== */
   
.single-brf_class h3 {
  margin-bottom: 24px;
}

.single-brf_class #student_notes {
  min-width: 200px;
  height: 150px;
}

.single-brf_class .table-viewport {
  margin-bottom: 64px;
}</pre></body></html>