@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap");
 
.cms-header {
  position: sticky;
  top: 0;
  z-index: 50;
 
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
 
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
 
  height: 64px;
  padding: 0 250px;
 
  font-family: "Open Sans", "Lato", "Inter", "Work Sans", sans-serif;
}
 
.cms-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  color: #47545c;
  flex-shrink: 0;
}
 
.cms-brand__logo img {
  height: 40px;
  width: auto;
  display: block;
}
 
.cms-brand__title {
  font-size: 16px;
  font-weight: 700;
  color: #47545c;
  line-height: 1;
  white-space: nowrap;
}
 
.cms-sidebar {
  display: flex;
  align-items: center;
  min-width: 0;
  overflow-x: auto;
}
 
.cms-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
 
.cms-menu {
  display: flex;
  align-items: center;
  gap: 4px;
 
  list-style: none;
  margin: 0;
  padding: 0;
}
 
.cms-menu > li {
  display: flex;
  align-items: center;
}
 
.cms-menu a {
  display: inline-flex;
  align-items: center;
 
  padding: 10px 14px;
  border-radius: 8px;
 
  font-size: 14px;
  font-weight: 600;
 
  color: #4b5563;
  text-decoration: none;
 
  transition: background-color 0.15s ease, color 0.15s ease;
}
 
.cms-menu a:hover {
  color: #5b8bb0;
  background: rgba(0, 0, 0, 0.03);
}
 
.cms-menu a.active {
  color: #5b8bb0;
  background: rgba(0, 0, 0, 0.03);
}
 
.cms-navigation li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #4b5563;
    text-decoration: none;
    border: 0;
    background: transparent;
    cursor: pointer;
}
 
@media (max-width: 768px) {
  .cms-header {
    height: auto;
    padding: 12px 16px;
    flex-wrap: wrap;
    gap: 12px;
  }
 
  .cms-sidebar {
    width: 100%;
  }
 
  .cms-menu {
    flex-wrap: wrap;
  }
 
  .cms-menu a {
    padding: 10px 12px;
  }
}