/* Header base */
.site-header {
  width: 100%;
}

.header-container {
  margin: 0 auto 1.5rem auto;
  
}

.header-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
    padding-top: 1rem;
}

.header-row-center {
  justify-content: center;
}

.header-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.header-logo-img {
  width: 100px;
  height: auto;
}

.header-slogan {
  flex: 1 1 auto;
  min-width: 320px;
}

.header-slogan-title {
  font-size: 20px;
  margin: 0 0 8px 0;
}

.header-slogan-subtitle {
  font-size: 14px;
  margin: 0;
}

.button-back-container {
  margin-top: 16px;
}

.site-header .button-back-container {
  margin-top: 0 !important;
  margin-bottom: 0;
  display: flex;
  align-items: center;
}

.back-button {
  display: flex;
  align-items: center;
}

.header-button-back {
  background-color: #f1f4fb;
  border: 1px solid #d6deee;
  border-radius: 10px;
  color: #263c62;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.header-button-back:hover {
  background-color: #e6ecf8;
  box-shadow: 0 6px 14px rgba(38, 60, 98, 0.12);
  transform: translateY(-1px);
}

.header-button-back:focus-visible {
  box-shadow: 0 0 0 3px rgba(38, 60, 98, 0.2);
  outline: none;
}

.header-manage {
  margin-left: auto;
}

.header-manage-inner {
  display: flex;
  align-items: center;
}

.header-menu-wrapper {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.header-menu-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-burger {
  display: flex;
  align-items: center;
}

.header-burger-icon {
  cursor: pointer;
  font-size: 20px;
  width: 25px;
  height: 25px;
  color: #263c62;
}

.logo-menu-hamburguer {
	cursor: pointer;
	position: absolute;
	top: 40px;
}
.header-menu-left:hover,
.logo-menu-hamburguer:hover {
  cursor: pointer;
  
}

.header-menu-desktop {
  display: flex;
  align-items: center;
}

.header-menu {
  list-style: none;
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
}

.header-menu-mobile {
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 8px;
}

.header-menu-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 6px 10px;
	border-radius: 10px;
	cursor: pointer !important;
	transition: background-color 0.2s ease, color 0.2s ease;
	white-space: nowrap;
	line-height: 1.2;
	color: #263c62;
	font-size: 0.8rem;
	font-weight: 600;
}

.header-menu-item i{
  font-size: 20px;
  line-height: 1;
}

.header-menu-item-mobile {
  width: 100%;
  justify-content: flex-start;
  font-size: 0.7rem;
}


.header-menu-item a:hover,
.header-menu-item span:hover,
.header-menu-item i:hover,
.header-menu-item:hover {
  background-color: #f1f4fb;
  color: var(--bs-indigo) !important;
}

.header-menu-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: inherit;
  color: inherit;
  text-decoration: none;
}

.header-user-info {
  align-items: center;
}

.header-user-name {
  font-size: inherit;
  white-space: nowrap;
  color: inherit;
}

.header-logout-icon {
  cursor: pointer;
  font-size: 20px;
  color: inherit;
}

.header-login-link {
  font-size: inherit;
  display: inline-flex;
  align-items: center;
}

@media (max-width: 768px) {
  .header-row {
    justify-content: center;
    
  }
  .header-menu-desktop {
    display: none;
  }
}
