input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.form-container {
    position: relative;
}

.overlay {
    display: none; /* Initially hidden */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Translucent grey */
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.overlay .content {
    text-align: center;
}

.overlay p {
    color: white;
    margin-top: 20px; /* Add some margin to separate the text from the spinner */
}

/* The loader/spinner */
.spinner {
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
    margin: 0 auto; /* Center the spinner horizontally */
}

/* Spinner animation */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.banner {
    /* Text color */
    padding: 10px;
    /* Adjust padding as needed */
    width: 100%;
    /* Make the banner stretch all the way across */
    box-sizing: border-box;
    /* Include padding in width calculation */
    text-align: center;
    margin: 0;
    /* Center align text */
    font-size: x-large;
}

.maintenance-banner {
    background-color: hsl(0, 100%, 50%);
    color: #FFFFFF;
}

.restricted-banner {
    background-color: hsl(0, 100%, 50%);
    color: #000000;
}

.local-banner {
    background-color: hsl(286, 97%, 46%);
    color: #ffffff;
}

.dev-banner {
    background-color: hsl(110, 97%, 46%);
    color: #ffffff;
}

.test-banner {
    background-color: hsl(34, 100%, 50%);
    color: #ffffff;
}

input[type=number] {
    appearance: textfield;
    -moz-appearance: textfield;
}

.btn-secondary {
    background-color: #d9d7d7;
    color: black;
    margin-top: 10px;
}

.container {
    max-width: 80%;
}

div.form-group>label {
    font-weight: bold;
}

h1, h2 {
    margin-top: 10px;
}

html,
body {
    font-family: "Arial";
    min-height: 100vh;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
}

form~form {
    margin-top: 20px;
}

form+p {
    margin-top: 40px;
}

.input-group {
    gap: 10px;
}

footer {
    width: 100%;
    height: 50px;
    color: #231520;
    margin-top: auto;
    text-align: center;
    color: #FFFFFF;
    padding: 2px;
}

footer a {
    color: #3E8DDD;
}

div+p {
    margin-top: 10px;
    margin-bottom: 0
}

textarea {
    height: 150px;
}

.lastSpace {
    height: 50px;
}

.layout-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: white;
}

.strongLabel {
    font-weight: bold;
}

.form-control {
    border-radius: 10px;
}

th {
    text-align: center
}

.btn-link {
    padding: 0;
}

table,
th,
td {
    border: 1px solid black;
}

#check_hp {
    display: none;
}

.logo-stsci,
.logo-mission {
    max-width: 100%;
    max-height: 100px;
    height: auto;
    width: auto;
}

@media (max-width: 775px) {
    .logo-stsci,
    .logo-mission {
        max-height: 70px;
    }
}
@media (max-width: 560px) {
    .logo-stsci,
    .logo-mission {
        max-height: 60px;
    }
}

@media (max-width: 490px) {
    .logo-stsci {
        max-height: 60px;
        min-width: 300px;
        }
    .logo-mission {
        display: none;
    }
}

.col-mtime {
    text-align: right;
}

.help-desk-link {
    color: #52a6ff;
}

.skip-link {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #005fcc;
    /* High-contrast color */
    color: white;
    padding: 10px;
    text-decoration: none;
    z-index: 1000;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.skip-link:focus {
    transform: translateY(0);
    outline: 2px solid white;
}

html {
    scroll-behavior: smooth;
}

.center-cell {
    text-align: center
}