/* Ensure the body and html take up the full viewport height */
html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

/* Main content to fill the space between the header and footer */
.main-content {
    flex: 1; /* Expands the content to fill the available space */
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centers content vertically */
    align-items: center; /* Centers content horizontally */
}

/* Fixed footer */
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #343a40;
    color: white;
    text-align: center;
    padding: 15px 0;
}

/* Adjust logo size */
.navbar-brand img.logo {
    height: 40px; /* Set the desired height */
    width: auto; /* Maintain aspect ratio */
    max-width: 150px; /* Optional: Limit maximum width */
}

.input-group-text {
    background-color: #f8f9fa;
    font-weight: bold;
    color: #343a40;
}

.input-group input {
    border: 1px solid #ced4da;
    border-left: none;
}