html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
    background-color: #F7EDDE;
    display: grid;
    grid-template-rows: auto 1fr auto;
    min-height: 100vh;
    text-align: left;
}

a, h1 {
    color: #FA550F;
}

th, td, .text-muted {
    font-size: 14pt;
}

.btn-dot {
    background-color: #FA550F;
    border-color: #FA550F;
    font-size: 14pt;
}

.card-header {
    color: #FA550F;
    font-size: 16pt;
    font-weight: bold;
}

.form-control:focus {
    border-color: #FA550F;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(250, 85, 15, 0.6);
}

.modal-title {
    color: #FA550F;
}

*::-webkit-scrollbar {
    background-color: #fff;
    width: 16px;
}

/* background of the scrollbar except button or resizer */
*::-webkit-scrollbar-track {
    background-color: #fff;
}

/* scrollbar itself */
*::-webkit-scrollbar-thumb {
    background-color: #babac0;
    border-radius: 16px;
    border: 4px solid #fff;
}

/* set button(top and bottom of the scrollbar) */
*::-webkit-scrollbar-button {
    display: none;
}