html, body {
  margin: 0;
  font-family: sans-serif;
  width: 100vw; /* Use viewport width */
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw; /* Use viewport width */
  height: auto;
  padding: 5px;
  background-color: rgb(67, 248, 67);
  z-index: 9999;
  display: flex;
  justify-content: space-around;
  align-items: center;
  -webkit-overflow-scrolling: touch; /* Smooth scrolling */
}

.footer-control {
  /* margin: 0 2.5px; */
  padding: 0 2.5px;
  cursor: pointer;
  height: 30px;
  width: 44px;
}

.footer-control:hover {
  border: 2px solid black;
}

/* Flex layout for controls START */
.footer-controls-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative; /* important for absolute positioning inside */
  padding: 0 1rem;
}

/* Icon style START */
.footer-control {
  padding: 0 2.5px;
  cursor: pointer;
  height: 30px;
  width: 44px;
}

.footer-control:hover {
  border: 2px solid black;
}

/* Icon style END */
/* Flex layout for controls END */
main {
  position: relative;
  flex-grow: 1;
  overflow: hidden;
}

section {
  position: absolute;
  top: 0;
  left: 0px;
  right: 0;
  bottom: 0;
  flex: 1;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0s linear 0.25s;
  padding: 1rem;
}

section.active {
  opacity: 1;
  visibility: visible;
  transition-delay: 0.25s;
}

.section-heading {
  font-weight: 900;
}

/* header css START */
/* General header styling */
.header {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #43f843;
  color: #003700;
  font-weight: 900;
  padding: 1rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  user-select: none;
}

/* Top row layout */
.top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* Icon container on left */
.sign-in-out-icon-container {
  width: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  outline: none;
}

.sign-in-out-icon-container:focus {
  outline: 2px solid #005500;
  outline-offset: 2px;
}

/* Padlock icon styling */
.icon {
  width: 30px;
  height: 25px;
  border-radius: 5px;
  display: block;
}

/* App name centered */
.app-name {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.5rem;
  white-space: nowrap;
  pointer-events: none; /* So clicks pass through */
}

/* Spacer div to balance flexbox */
.spacer {
  width: 40px; /* same width as icon container */
}

/* Email row */
.email-row {
  margin-top: 0.5rem;
  text-align: center;
  font-weight: 600;
  font-size: 1rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

/* header css END */
.off-screen-placeholder {
  position: fixed;
  left: -5000px;
}

.text-align-center {
  text-align: center;
}

.margin-left-20px {
  margin-left: 20px;
}

.margin-left-40px {
  margin-left: 40px;
}

.list-style-type-none {
  list-style-type: none;
}

.progress-circle {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  z-index: 5;
}

.progress-circle-svg {
  /* svg { */
  transform: rotate(-90deg);
}

.progress-value {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
}

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