/**
 * Styles to fake the Easor application around the embedded Salaxy UI / iframe.
 * These are only for dev / testing / demo purposes - should not be used in PROD.
 */
.easor-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  h1 {
    font-size: 32px;
    font-weight: 400;
    padding-left: 24px;
    color: #000000;
  }
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.10);
  z-index: 1000;
}

.easor-layout {
  display: flex;
  min-height: 100vh;
  background-color: #f5f5f0;
}

.easor-sidebar {
  width: 220px;
  flex-shrink: 0;
  background-color: #000000;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  padding: 22px 0 16px 0;
}

.easor-sidebar-logo {
  display: flex;
  justify-content: center;
  padding: 4px 16px 36px 16px;
}

.easor-sidebar-logo img {
  height: 32px;
  width: auto;
}

.easor-sidebar-nav {
  display: flex;
  flex-direction: column;
}

.easor-nav-item {
  display: flex;
  align-items: center;
  padding: 11px 22px;
  color: #ffffff;
  text-decoration: none !important;
  font-size: 15px;
  font-family: Figtree, sans-serif;
  border-right: 2px solid transparent;
  transition: background-color 0.15s ease;
}

.easor-nav-item:hover {
  background-color: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.easor-nav-item.active {
  background-color: #334338;
  color: #9BFF71;
  border-right: solid 4px #9BFF71;
}

.nav-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.btn-easor-logout {
  position: absolute;
  right: 14px;
  top: 14px;
  width: 132px;
  border-radius: 18px;
  opacity: 0;
  transition: opacity 0.3s ease;
  &:hover {
    opacity: 1;
  }
}