* {
  font-family: 'Montserrat', sans-serif;
}

body {
  margin: 0;
  padding: 0;
}


.browser {
  display: grid;
  grid-template-columns: 200px 1fr;
  height: 100dvh;
  width: 100dvw;
  max-height: 100dvh;
  max-width: 100dvw;
}

.browser__banner {
  background: var(--color-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  width: 100%;
  color: var(--color-text-inverted);
}

.browser__banner--logo {
  max-height: 100px;
  max-width: 100px;
  margin-top: 2rem;
}

.content {
  background-color: #F4F8F9;
  padding: 4rem;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  align-items: start;
  gap: 4rem;
  z-index: 1;
  position: relative;
}

.content__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.user, .client, .logout {
  display: flex;
  align-items: center;
  gap: 2px;
  border-radius: 20em;
  padding: 5px 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.logout {
  background-color: var(--color-primary);
  color: var(--color-text-inverted);
}

.table {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding: 2rem;
  backdrop-filter: blur(8px);
  border-radius: 6px;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: white;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

.image {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}

.background {
  position: relative;
  height: 100%;
  width: 100%;
}

.background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
  z-index: 1;
}

.background__image {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0.1;
  z-index: -1;
  filter: grayscale(100%);
}

.background__image:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
  z-index: 1;
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}