html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
  font-size: larger;
}

.absent-text {
    text-decoration: line-through;
    color:red;
}

.checkedin-text {
    color: forestgreen;
}

.conflict-text {
    color: orangered;
}

.feo-text {
    color: dodgerblue;
}

.ran-text {
    text-decoration: line-through;
    color: black;
}

keypad-grid .btn {
    width: 60px; /* Adjust as needed */
    height: 60px; /* Adjust as needed */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
}

.row {
    margin-bottom: 5px; /* Add some vertical spacing between rows */
}

table {
    border-collapse: collapse; /* Essential for borders to display correctly on tr/td */
}

td, th {
    border-bottom: 1px solid #ddd; /* Adds a light gray bottom border to each cell */
}

.scribesheet-button {
    height: 100px;
    width: 100px;
    font-size: xx-large;
}

.draggable-item {
    padding: 10px;
    background-color: #3498db;
    color: white;
    cursor: grab;
    margin-bottom: 5px;
}

/* Class added during the active drag sequence */
.dragging {
    opacity: 0.5;
}