/* Layout styles for application structure */

/* Full height flexbox layout */
body.full-height-layout {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body.full-height-layout main {
  flex: 1;
}

/* Flash messages */
.flash-messages-container {
  position: fixed;
  top: 70px;
  right: 0;
  left: 0;
  z-index: 100;
  pointer-events: none;
}

.flash-messages-wrapper {
  margin-left: auto;
  width: fit-content;
  pointer-events: auto;
}

.flash-message-notification {
  padding-right: 2.5rem;
}
