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;
}
table
{
    margin: 5px;
}


.tableMainHeader {
    color: white;
    background-color: #303745;
    font-weight: bold;
    text-align: center;
    border: 1px solid black;
}

.tableMainSubHeader {
    color: white;
    background-color: #303745;
    font-weight: bold;
    text-align: center;
    border: 1px solid black;
    width:75px;
}

.tableMainDayHeader {
    color: black;
    font-weight: bold;
    text-align: right;
    border: 1px solid black;
}

.tableMainDayHeaderNonWorkday {
    color: black;
    font-weight: bold;
    text-align: right;
    border: 1px solid black;
    background-color: lightblue;
}

.tableMainDayEntryActive {
    color: black;
    font-weight: bold;
    text-align: center;
    border: 1px solid black;
    background-color: lightgreen;
}

.tableMainDayEntryActive:hover {
    color: black;
    font-weight: bold;
    text-align: center;
    border: 1px solid black;
    background-color: lightcoral;
}

.tableMainDayEntryInactive {
    color: black;
    font-weight: bold;
    text-align: center;
    border: 1px solid black;
    background-color: white;
}

.tableMainDayEntryInactive:hover {
    color: black;
    font-weight: bold;
    text-align: center;
    border: 1px solid black;
    background-color: lawngreen;
}

.tableMainDayEntryNonWorkday {
    color: black;
    font-weight: bold;
    text-align: right;
    border: 1px solid black;
    background-color: lightblue;
}