@import "./styles/variables.css";

html,
body {
  font-family: "Work Sans", "Helvetica Neue", sans-serif;
  margin: 0;
  padding: 0;
  height: 100%;
  background-color: var(--ref-secondary-secondary98-light);
}

.container-mfe {
  display: flex;
  flex-direction: row;
}

.sidebar {
  flex-shrink: 0;
  position: sticky;
  top: 0;
  height: 100%;
}

.header {
  grid-area: Header;
}

.content2 {
  grid-area: Footer;
}

.content {
  flex: 1;
  overflow-y: auto;
}

.access-denied-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 90vh;
  text-align: center;
}

.access-denied-page h1 {
  font-size: 3rem;
  color: #d32f2f;
  margin-bottom: 1rem;
}

.access-denied-page p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 2rem;
}

.access-denied-page .home-link {
  font-size: 1rem;
  text-decoration: none;
  color: #1976d2;
  border: 1px solid #1976d2;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.access-denied-page .home-link:hover {
  background-color: #1976d2;
  color: white;
}

