/* [project]/components/ui/css/adminHeader.scss.css [app-client] (css) */
.adminHeader {
  z-index: 1000;
  color: #fff;
  background: #1f2937;
  width: 100%;
  position: sticky;
  top: 0;
}

.adminHeader_container {
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
}

.adminHeader_logo .logo {
  text-align: center;
  letter-spacing: .05em;
  align-items: center;
  font-weight: 700;
  display: flex;
}

.adminHeader nav ul {
  align-items: center;
  gap: 2rem;
  display: flex;
}

.adminHeader nav ul li {
  list-style: none;
}

.adminHeader nav ul li a {
  color: #fff;
  font-size: .95rem;
  text-decoration: none;
  transition: all .2s;
}

.adminHeader nav ul li a:hover {
  opacity: .7;
}

.adminHeader nav ul .action-button {
  color: #fff;
  cursor: pointer;
  background: #ef4444;
  border: none;
  border-radius: 6px;
  padding: .4rem 1rem;
  font-size: .9rem;
  transition: all .2s;
}

.adminHeader nav ul .action-button:hover {
  background: #dc2626;
}

