
.valid_drop_target_border {
    border-color: green !important;
    border-width: 4px !important;
}
/* Does this make the dropup menu on update screen scroll?*/
.dropdown-menu {
    overflow: hidden;
    overflow-y: auto;
    max-height: calc(100vh - 150px);
}

/* To setup the finger when hovering on links */
.jump-link {
    cursor: pointer;
}

/* Whiteboard title table widths */
.whiteboard-table-title {
    width: 130px;
}

.whiteboard-table-end-icons {
    width: 55px;
}

.whiteboard-table-critical-icon-cell {
    width: 20px;
}

/* Table needs to have this set to the columns line up nicely */
.whiteboard-table {
    table-layout: fixed;
    width: 100%;
}

/* prevent the UL from sitting too high in table cell */
dl, ol, ul {
    margin-top: 0;
    margin-bottom: 0;
}

/*error class is for change password and temp password forms*/
.error {
    color: red;
}

table {
    border-collapse: separate;
    border-spacing: 0;
    border: 0.5px solid;
}

table th {
    border-top: 0.5px solid;
    border-bottom: 0.5px solid;
    border-right: 0.5px solid;
}

table td {
    border-bottom: 0.5px solid;
    border-right: 0.5px solid;
}

/* I think this is what makes the first column stick to the left of screen */
.schedule_table > tbody > tr > td:first-child {
    position: sticky;
    left: 0;
    z-index: 1;
    background-color: #eee;
}

thead,
th {
    /* position: sticky; */
    position: sticky;
    top: 0px;
    background-color: #eee;
    z-index: 2;
}

th,
td {
    border: 0.5px solid black;
    table-layout: fixed;
    padding: 10pt;
    text-align: center;
}

body {
    padding-top: 55px;
}

tr.clickablerow {
    cursor: pointer;
}

th.clickable-header {
    cursor: pointer;
}

li.clickable_list_item {
    cursor: pointer;
}

.navbar-toggler:focus {
    border: 0 !important;
    box-shadow: none !important;
}

.navbar-toggler {
    border: 0 !important;
}

.employee_cell {
    max-width: 140px;
}


.table td.platoon_label {
    color: black;
    background-color: lightgreen;
}


.table td.divider_label {
    color: black;
    background-color: lightgrey;
}

.tbl-row {
  /* overflow-x: scroll;*/
    overflow-y: scroll;
   /*  height: fit-content;*/
    max-height: 90dvh;
}

.htmx-indicator{
    opacity:0;
    transition: opacity 500ms ease-in;
}
.htmx-request .htmx-indicator{
    opacity:1;
    z-index: 9999;

}
.htmx-request.htmx-indicator{
    opacity:1;
    z-index: 9999;
}