html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

body {
  margin-bottom: 60px;
}

.imageWrap {
    float: left;
    margin-bottom: 2%;
    margin-top: 1.5%;
}

.setVisible:Focus {
    text-decoration: none !important;
    outline: 2px solid #003399 !important;
    outline-offset: 4px !important;
}

.inputTextStyle {
    width: 65% !important;
    padding-left: 5px !important;
    height: 30px !important;
    border: 1px solid #ccc !important;
    float: right !important;
}

.headerPadding {
    padding-left: 20px;
    padding-right: 20px;
}

.hrMargin {
    margin-top: 3rem;
}

.headerText {
    font-size: large;
    color: black;
}

.invalidDivision {
    padding: 10px;
    text-align: center
}

.invalidkey {
    color: Red;
    font-weight: bold;
    text-align: center;
}

.spacer {
    height: 250px; /* Adjust this value as needed */
}

.spacer-top {
    margin-top: 50px;
}

.spacer-bottom {
    margin-bottom: 50px;
}

.text-decoration-underline {
    text-decoration: underline !important;
}

.maintenance {
    font-weight: bold;
    text-align: center;
}

.maintenance-svg {
    max-height: 100px;
}

.maintenance-warning-svg {
    margin-right: 12px;
}

.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    flex: 1;
}

.marquee-content {
    display: inline-block;
    padding-left: 100%;
    animation: marquee-scroll 20s linear infinite;
    font-weight: 600;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}