@import url("https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700&family=Source+Sans+3:wght@400;500;600&display=swap%22");
 
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
 
.cms-header {
  position: sticky;
  top: 0;
  z-index: 50;
 
  display: flex;
  align-items: center;
  justify-content: space-between;
 
  height: 64px;
  padding: 0 220px;
 
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
 
  border-bottom: 1px solid #e5e7eb;
  font-family: "Source Sans 3", sans-serif;
}
 
.cms-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #0f172a;
}
 
.cms-brand__logo img {
  height: 36px;
}
 
.cms-brand__title {
  font-size: 18px;
  font-weight: 700;
  font-family: "Merriweather", serif;
}
 
.cms-sidebar {
  display: flex;
  align-items: center;
  overflow-x: auto;
}
 
.cms-navigation {
  display: flex;
  gap: 6px;
}
 
.cms-menu {
  display: flex;
  gap: 6px;
  list-style: none;
}
 
.cms-menu a {
  display: inline-flex;
  align-items: center;
 
  padding: 8px 14px;
 
  border-radius: 12px;
 
  font-size: 14px;
  font-weight: 600;
 
  color: #64748b;
  text-decoration: none;
 
  transition: all 0.15s ease;
}
 
.container.text-center{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
 
.cms-menu a:hover {
  background: #f1f5f9;
  color: #0f172a;
}
 
.cms-menu a.active {
  background: #0f172a;
  color: white;
}
 
.cms-navigation li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
 
  padding: 8px 14px;
 
  border-radius: 12px;
 
  font-size: 14px;
  font-weight: 600;
 
  color: #64748b;
  cursor: pointer;
}
 
@media (max-width: 768px) {
  .cms-header {
    padding: 12px 16px;
    height: auto;
    flex-wrap: wrap;
  }
 
  .cms-sidebar {
    width: 100%;
  }
 
  .cms-menu {
    flex-wrap: wrap;
  }
}