.vms-content {
  height: auto !important;
  min-height: auto !important;
}
.nova-content.vms-content {
  /* padding-top: 0px !important; */
}
.loading-row {
  height: 100vh;
}
.loading-row .col {
  align-self: center !important;
}
.nova-viewport {
  position: relative;
}
.logout-banner {
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: #1e237e;
  display: flex;
  justify-content: center;
  align-items: center;
}
.logout-banner .logout-title {
  color: #fff;
}
.vms-content > .nova-grid:nth-child(1) {
  flex-grow: 0 !important;
}

/*
NOTE: THOUGHT OF PUTTING THIS MY_CONTENT COMMON CSS HERE, OTHERWISE NEED TO DUPLICATE THIS CSS IN EACH MY_CONTENT MF
STARTS: custom css for my content drop down
*/
.my-content-dropdown {
  min-width: unset !important;
  width: unset !important;
  margin-top: 0px !important;
}
.my-content-dropdown > .nova-input-bar {
  border: none !important;
}
.my-content-dropdown
  > .nova-input-bar
  > .nova-input--select-focusbox
  > .nova-input--select {
  font-size: 1.625rem;
  font-weight: var(--theme-font-weight--regular, 400);
  letter-spacing: -0.5px;
  text-transform: capitalize;
}
/* ENDS:custom css for my content drop down */

/* START GENAI@CLINE */
/* Footer styles - appears on all MFEs */
.vms-footer {
  background-color: #f5f5f5;
  color: #4a4a4a;
  padding: 20px 40px 20px 20px;
  width: 100%;
  box-sizing: border-box;
  position: relative;
  margin-top: 0;
  flex-shrink: 0; /* Prevent footer from shrinking */
}
/* END GENAI@CLINE */

/* START GENAI@CLINE */
.footer-content {
  margin: 0 auto;
  padding: 15px 20px 0px 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
/* END GENAI@CLINE */

.footer-link {
  font-style: normal;
  font-weight: 500;
  text-decoration: underline !important;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  color: #1434cb !important;
}

.footer-logo {
  width: 71px !important;
  height: 23px !important;
  justify-content: left;
  color: #1434cb !important;
  fill: #1434cb !important;
}

.copyright-text {
  color: #4a4a4a;
  font-style: normal;
  font-weight: 400;
  font-family: "Noto Sans";
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-right {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer-link {
  color: #1a73e8;
  text-decoration: none;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  text-decoration: underline !important;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
}

.footer-link:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.footer-separator {
  color: #f5f5f5;
  font-size: 14px;
}

/* Ensure proper layout for MFE applications */
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

/* Navbar container should be fixed at top */
#navbar-container {
  flex-shrink: 0;
  z-index: 1000;
}

/* Ensure footer appears as the last element in content */
#footer-root {
  order: 999;
  margin-top: auto;
}

/* Ensure main content containers can accommodate the footer */
.nova-content,
.vms-content {
  position: relative;
  padding-bottom: 0;
}

/* Main content wrapper to contain all scrollable content including footer */
#main-content-wrapper {
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 60px); /* Adjust for navbar height */
  overflow-y: auto;
}

/* Ensure individual route containers grow to fill available space */
#main-content-wrapper > div {
  flex: 1;
}

/* Make sure footer is always at bottom of content */
#main-content-wrapper #footer-root {
  margin-top: auto;
  flex-shrink: 0;
}

/* Responsive footer */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .footer-left {
    flex-direction: column;
    gap: 10px;
  }

  .footer-right {
    flex-wrap: wrap;
    justify-content: center;
  }
}
/* END GENAI@CLINE */


/*# sourceMappingURL=main.css.map*/