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;
}

.form-control {
    min-width: 100px; /* Adjust this value as needed */
}

.btn-row {
    display: flex;
    /*font-weight: 400;
    line-height: 1.5;*/
    /* text-align: center; */
    /*align-items: center;*/
    justify-content: space-between;
    text-decoration: none;
    /* vertical-align: middle; */
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    margin-bottom: 0.5rem;
    color: #ffffff;
    background-color: #0dcaf0;
    border-color: #0dcaf0;
}

.btn-row:hover {
    color: #ffffff;
    background-color: #31d2f2;
    border-color: #25cff2;
}

.btn-row .btn-col {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    flex: 1 0 0%;
}

.header-row {
    display: flex;
    text-decoration: none;
    padding: 0.375rem 0.75rem;
    /*padding: 0.5rem;*/
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #000000;
    font-weight: 700;
    border-bottom: 1px solid #dee2e6;
    justify-content: space-between;
}

.header-row .header-col {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    flex: 1 0 0%;
}