.header-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 12px 0 12px;
  min-height: 56px;
}
.header-left {
  display: flex;
  align-items: center;
  gap: 8px;
}
/* Consistent logo and hamburger menu alignment for header and sidebar */
.site-header .header-left {
  display: flex;
  align-items: center;
  gap: 8px;
}
.site-header .logo img {
  height: 40px;
  width: 180px;
  display: inline-block;
}
.site-header .menu-toggle {
  background: none;
  border: none;
  color: var(--primary-color);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  margin-right: 16px;
  transition: filter 0.2s;
  position: relative;
  width: 32px;
  height: 32px;
  padding: 0;
  justify-content: center;
  align-items: center;
  overflow: visible;
}
.site-header .menu-toggle:hover::after,
.site-header .menu-toggle:focus::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  background: #333;
  border-radius: 50%;
  z-index: 0;
}
.site-header .menu-toggle .menu-icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}
.site-header .menu-icon i {
  font-size: 20px;
  margin: 0;
  line-height: 1;
}

.site-header .menu-icon {
  display: inline-block;
  font-size: 20px;
  transition: filter 0.2s;
}
.site-header .menu-toggle:hover .menu-icon,
.site-header .menu-toggle:focus .menu-icon,
.site-header .menu-toggle:active .menu-icon {
  filter: brightness(1.5);
  opacity: 0.85;
}
/* Header styles for Game-Art.Dev CMS */
/*

 * This file contains styles for the header section of the CMS, including the logo, search box, and user icons.
 * It is designed to be modular and follow semantic markup standards.
 */

/* Global header styles */


/* Reset styles for header icons */
.search-box .button-icon,
.search-box .button-icon::before,
.search-box .fa-search {
  background: none !important;
}
/* header.css



/* Logo Container */
.logo {
  position: relative;
  display: inline-block;
  margin-left: 0;
  padding-top: 0;
} 

/* Search Box */
.search-container {
  position: relative;
}

#search-toggle {
  display: inline-flex;
  position: relative;
  background: none;
  border: none;
  font-size: 24px;
  /* .search-box button styles removed; .button-icon now handles all icon button styling */
  border-radius: 4px;
  flex-direction: row;
  align-items: center;
  padding: 4px;
  z-index: 10;
}

.search-box input[type="text"] {
  border: none;
  padding: 8px;
  font-size: 14px;
}

.search-box button[type="submit"] {
  background: none;
  box-shadow: none;
  outline: none;
  border: none;
  padding: 8px;
  color: inherit;
  font-size: 14px;
}

.search-box {
  display: inline-flex;
  position: relative;
  flex-direction: row;
  align-items: center;
  padding: 4px;
  z-index: 0;
}

.search-box label {
  position: absolute;
  left: -64px;
  display: none;
}

/* User Container */
.user-container {
    position: relative;
}
