body {
    padding-top: 4rem;
    /*font: 14px "Lucida Grande", Helvetica, Arial, sans-serif;*/
    font-family: Franklin Gothic Medium, Franklin Gothic, ITC Franklin Gothic, Arial, sans-serif;
    background-color: #ffffff !important;
}

.starter-template {
    padding: 0 1.5rem;
    text-align: center;
}

.jumbotron {
    padding-top: 3rem;
    padding-bottom: 3rem;
    margin-bottom: 0;
    background-color: #fff;
}

.bg-dark {
    background-color: #004C97 !important;
}

.navbar {
    padding: 0 1rem;
}

.navbar-brand img {
    height: 35px;
    width: 125px;
}

@media (min-width: 768px) {
    .jumbotron {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
}

.navbar-dark .navbar-nav .nav-link {
    color: #999999;
}

.jumbotron p:last-child {
    margin-bottom: 0;
}

.jumbotron h1 {
    font-weight: 300;
}

.jumbotron .container {
    max-width: 40rem;
}

footer {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

footer p {
    margin-bottom: .25rem;
}

.desktop-form-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
    margin: auto;
    border: 1px solid #dee2e6;
    border-radius: 0.35rem;
    box-shadow: 0 0.125rem 0.35rem rgba(0, 0, 0, 0.075);
    background-color: #f8f9fa;
}

.desktop-form-container .card-body {
    padding: 20px;
}

.desktop-form-container form {
    text-align: left;
}


.btn-toggle {
    border: 2px solid #007bff; /* Default border color */
    color: #007bff; /* Default text color */
}

/* Ensure the active state has a blue background and white text */
.btn-toggle.active {
    background-color: #007bff;
    color: white;
}

/* Remove outline and box-shadow on focus to maintain the active state appearance */
.btn-toggle:focus {
    outline: none;
    box-shadow: none;
}

/* Center the toggle buttons */
.toggle-container {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.welcome-header {
    font-size: 2.5em; /* Larger font size for visibility */
    font-weight: bold; /* Bolder font for emphasis */
    text-align: center;
    margin-bottom: 20px; /* Added space below the header */
}

.welcome-section {
    border: 2px solid #007bff; /* Bootstrap's primary color */
    border-radius: 10px; /* Increased border radius for a more rectangular appearance */
    padding: 20px;
    margin-top: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    background-color: #f8f9fa; /* Light background color for contrast */
}


.home-button {
    border-radius: 8px; /* Softer corners */
    padding: 12px 20px; /* More padding for a better touch target */
}

.check-in-button, .check-out-button {
    background-color: #0046AD; /* Blue color for Check In */
    border: none;
    font-size: 24px; /* Adjust font size to make the text bigger */
    width: 80%; /* Set to 80% width */
    display: block;
    margin-left: auto;  /* Center the button */
    margin-right: auto; /* Center the button */
    padding: 12px 0;
}

.check-out-button {
    background-color: #5EB6E4; /* Red color for Check Out */
}

.check-in-button a, .check-out-button a {
    color: white; /* Ensuring text is white for visibility */
}

.spinner {
    display: inline-flex;
    align-items: center;
    margin-left: 10px; /* Adjust spacing as needed */
}

.spinner-inner {
    border: 3px solid #f3f3f3; /* Light background color */
    border-top: 3px solid #3498db; /* Blue color for the spinner */
    border-radius: 50%;
    width: 16px; /* Size of the spinner */
    height: 16px; /* Size of the spinner */
    animation: spin 1s linear infinite; /* Spin animation */
}

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

