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;
}
#languageDropdown{
    text-align: right;
    padding-bottom: 15px;
}
.errorMessage {
    font-weight: bold;
    color: red;
}
.caseInformation
{
    font-size: 18px;
    padding-bottom: 15px;
}
.grid-container {
    display: grid; /* Enables CSS Grid layout */
    grid-template-columns: repeat(3, 1fr); /* Creates 3 columns of equal width */
    grid-template-rows: repeat(3, 1fr); /* Creates 3 rows of equal height */
    gap: 1rem; /* Adds spacing between grid items */
}
.grid-item-selectable:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Adds a drop shadow on hover */
}

.grid-item-selectable {
    border: 1px solid gray;
    border-radius: 10px; /* Rounds the corners of the boxes */
    cursor: pointer; /* Changes the cursor to a hand/finger */
    transition: box-shadow 0.3s ease; /* Smooth transition for the shadow */
}

.grid-item {
    border: 1px solid gray;
    border-radius: 10px; /* Rounds the corners of the boxes */
}

.grid-header {
    background-color: #455970; /* Example background color */
    border-radius: 10px 10px 0px 0px; /* Rounds the corners of the boxes */
    color: white;
    font-size: 20px;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
    height: 90px;
    vertical-align: middle;
}

.grid-divider {
    height: 5px;
    background-color: #f8bd53;
}

.grid-data {
    background-color: #ffffff;
    border-radius: 0px 0px 10px 10px; /* Rounds the corners of the boxes */
    padding: 15px;
}
input[type=text]
{
    background-color: #ffffee;
    border: 1px solid #a0a0a0;
}

.tblForm {
    border-top: 1px solid black;
    border-left: 1px solid black;
}

.tblForm .alt1{
    background-color: #fcfcfc;
}
.tblForm .alt2 {
    background-color: #f0f0f0;
}
    .tblForm tr th {
        border-right: 1px solid black;
        border-bottom: 1px solid black;
        padding: 5px;
        background-color: #455970;
        color: white;
        font-weight: bold;
    }
.blankTH {
    border-right: 1px solid black;
    border-bottom: 1px solid black;
    padding: 5px;
    background-color: #455970;
    color: white;
    font-weight: bold;
}
.tblForm tr td {
    border-right: 1px solid black;
    border-bottom: 1px solid black;
    padding: 5px;
}

    .buttonRow
    {
        padding-top: 15px;
        text-align: left;
    }

select {
    border: 1px solid black;
    background-color: #ffffee;
}
option {
    border-right: 5px solid black;
}
.newRequestButton{
    padding-top: 5px;
    padding-left: 15px;
}
.waitSpinner {
    padding: 10px;
    display: none;
    color: #ff0000;
}
.heading
{
    font-size: 20px;
}
.translationWarning {
    border: 1px solid #f0f0c0;
    background-color: #ffffee;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 10px;
    color: red;
    font-weight: bold;
    border-radius: 10px;
}

.languageAccess {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Adds a drop shadow on hover */
    border: 1px solid black;
    background-color: #fdfdfd;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 10px;
    width: 250px;
}