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%;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

.header-with-border {
    border-bottom: 35px solid #054476; 
    width: 100%;
}

.login-Logo {
    min-width: 400px; /* Adjust this value based on your design */
    max-width: 800px;
}

.login-header {
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    unicode-bidi: isolate;
}

.login-form-label {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    display: block;
}

.login-form-wrapper {
    width: 35%;
    text-align: left; 
}

.login-form .form-group {
    margin-bottom: 15px;
    text-align: left; 
}

.login-form .form-control {
    width: 100%;
    text-align: left;
}

.login-form .btn-primary {
    width: 50%;
    display: block;
    margin: 0 auto; 
}

#siteMenu > .k-item > .k-link {
    text-decoration: underline;
    color: white;
    font-size: 1.1rem;
}

#siteMenu .k-item .k-item .k-link {
    border-bottom: 2px solid #D3D3D3;
    padding: 5px;
    font-size: 1rem;
}

.header-with-background {
    background-color: #054476;
 /*   width: 100%;
    height: 12vh;*/
    border-bottom: 10px solid #D3D3D3; 
}

.header {
    background-color: #054476;
    padding: 20px;
    text-align: left;
    flex: 0 0 100px; /* Fixed height */
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

.logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 20px; 
}

.nav-Menu-Logo {
    width: 180px; 
    height: 75px; 
}

.header-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white; 
}

    .header-content h3 {
        margin: 0;
        font-family: Arial, sans-serif;
        font-size: 24px; 
    }

.nav-menu {
    display: flex;
    gap: 10px;
}

    .nav-menu a {
        color: white;
        text-decoration: none;
        padding: 10px; 
        border-bottom: 2px solid transparent; 
    }

        .nav-menu a:hover {
            border-bottom: 2px solid white; 
        }

#container {
    display: flex;
    flex-direction: column;
    padding: 20px;
}

#dropdown {
    margin-bottom: 20px; /* Space between dropdown and report viewer */
}

#reportViewer {
    flex: 1;
    position: absolute;
    top: 225px;
    left: 10px;
    right: 10px;
    bottom: 70px;
    overflow: hidden;
    box-sizing: border-box;
    max-width: 100%;
    max-height: calc(100vh - 200px);
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}

.layout-body {
    flex: 1; /* Adjustable length */
    padding: 20px;
}

.red {
    color: red
}