main {
  position: relative;
  display: flex;
  width: 100%;
  align-items: flex-start;
}

nav {
    overflow: hidden;
}

.dashboard-menu {
    position: relative;
    display: grid;
    height: 100vh;
    border-left: 0.7px solid var(--neutral-200);
    grid-template-rows: 72px 1fr 96px;
    width: 95%;
}

.dashboard-menu-principal{
  position: relative;
  display: flex;
  overflow-y: scroll;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding-top: 40px;
  width: 100%;
}

.error-background {
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  background-color: var(--neutral-800);
  z-index: 99;
}

.exit-warning-message {
  position: absolute;
  display: flex;
  flex-direction: column;
  background-color: white;
  border-radius: 20px;
  width: 45%;
  height: 45%;
  min-width: 700px;
  min-height: 300px;
  max-width: 700px;
  max-height: 300px;
  justify-content: space-between;
  align-items: center;
  padding: 30px;
}

.container-title-exit-warning {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

.container-title-exit-warning h3 {
  font-size: 3rem;
  color: var(--neutral-700);
}

.close-exit-warning {
  width: 40px;
  height: 40px;
  background-color: var(--primary-main);
  border: 0;
  border-radius: 100%;
  color: white;
  font-weight: bold;
  cursor: pointer;
}

.exit-warning-message p {
  font-size: 1.8rem;
  color: var(--neutral-700);
  width: 100%;
  text-align: left;
}

.adjust-warning-exit-buttons {
  display: flex;
  width: 100%;
  gap: 5px;
}

.decline-exit-button,
.confirm-exit-button {
  width: 100%;
  height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  border: 0;
  cursor: pointer;
  font-size: 1.8rem;
}

.decline-exit-button {
  background-color: white;
  color: var(--primary-main);
  border: 2px solid var(--primary-main);
}

.confirm-exit-button {
  background-color: var(--primary-main);
  color: white;
}
