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;
}

.top-panel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f2f2f2;
    padding: 10px;
}

/* Set the style for the left panel */
.left-panel {
    float: left;
    width: 20%;
    height: 500px;
    background-color: #e6e6e6;
    padding: 10px;
}

/* Set the style for the right panel */
.right-panel {
    float: right;
    width: 80%;
    height: 500px;
    background-color: #f2f2f2;
    padding: 10px;
}

/* Set the style for the table */
table {
    width: 100%;
}

table th, table td {
    text-align: left;
    padding: 8px;
    border-bottom: 1px solid #ddd;
}

    table tr:nth-child(even) {
        background-color: #f2f2f2;
    }

    table th {
        padding-top: 12px;
        padding-bottom: 12px;
        text-align: left;
        color: black;
    }

thead {
    width: 100%;
}

.col-border {
    border: 1px solid black;
}

.col-ltyellow {
    background-color: lightgoldenrodyellow;
}

.col-red {
    background-color: #ED2939;
}

.col-cyan {
    background-color: cyan;
}

.col-green {
    background-color: lightgreen;
}

.col-purple {
    background-color: blueviolet;
}

.col-pink {
    background-color: hotpink;
}

.col-unset {
    background-color: white;
    text-align: center;
    line-height: 16px;
}

.white-on-heading {
    background-color: #00bfff;
    color: white;
}

.black-on-stripe {
    background-color: #99ebff;
    color: black;
}

.white-on-black {
    background-color: black;
    color: white;
}

.card-colors {
    color: white;
    background-color: #00adee;
}