
body {
  font-family: var(--isceco-font);
  background-color: var(--isceco-color-background);
}

:root, body {
  height: 100%;
}

main {
  min-height: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
}

#mainheader {
  background-color: var(--isceco-color-white-500);
  position: sticky;
  top: 0;
  z-index: 50;
}

#mainfooter {
  bottom: 0;
  position: sticky;
  z-index: 50;
}

#maincontent {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding-inline: 90px;
  margin: var(--isceco-space-300) 0;
}

#maincontent > * {
  width: 100%;
}

@media (max-width: 991.98px) {
  #maincontent {
    padding-inline: 21px;
    margin: 19px 0;
  }
}

.details {
  margin: 10px 0;
}

.title-navigation {
  display: flex;
  gap: 5px;
  align-items: center;
}

#messagecontent.bottomfixed {
  z-index: 1000; /* Ensure it appears above other content*/
  position: fixed;
  bottom: 43px;
  right: 7px;
  max-width: 50%;
}


.button-wrapper {
  display: flex;
  justify-content: left;
  gap: 10px;
}

.filter {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 15px 0px 15px 0px;
}

#filter-icon {
  display: inline-block;
  cursor: pointer;
  padding: 15px 10px 15px 10px;
}