/* Shared layout for counselor site header (includes/header_site.html).
   Use when page does not load Tailwind so header renders correctly. */
.site-header-wrap { border-bottom: 2px solid #EBEBEE; }
.site-header-wrap > div { display: none; }
@media (min-width: 992px) {
  .site-header-wrap > div { display: flex !important; flex-direction: row; justify-content: center; padding: 16px 0; width: 100%; }
  .site-header-wrap > div > div { display: flex !important; flex-direction: row; justify-content: space-between; align-items: center; width: 100%; max-width: 1082px; margin: 0 auto; padding: 0 15px; }
  .site-header-wrap ul { display: flex; flex-direction: row; list-style: none; margin: 0; padding: 0; width: 100%; justify-content: space-between; align-items: center; gap: 24px; }
  .site-header-wrap li { display: flex; align-items: center; }
  .site-header-wrap li a img { height: 38.5px; width: auto; max-width: 140px; display: block; }
  .site-header-wrap .user-avatar-container { position: relative; }
  .site-header-wrap .user-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, #4CC9F0 0%, #3CBAE1 100%); color: #fff !important; font-size: 1rem; font-weight: 600; line-height: 1; display: flex; align-items: center; justify-content: center; cursor: pointer; }
  .site-header-wrap .user-avatar-dropdown { position: absolute; top: 100%; right: 0; margin-top: 4px; background: #fff; border-radius: 8px; box-shadow: 0 4px 12px rgba(0,0,0,0.15); min-width: 200px; z-index: 1000; display: none; }
  .site-header-wrap .user-avatar-dropdown.show { display: block; }
  .site-header-wrap .user-avatar-dropdown-header { padding: 16px; border-bottom: 1px solid #EBEBEE; }
  .site-header-wrap .user-avatar-dropdown-item { display: block; width: 100%; padding: 12px 16px; text-align: left; border: none; background: #fff; cursor: pointer; font-size: 14px; color: #333; border-top: 1px solid #EBEBEE; }
  .site-header-wrap .user-avatar-dropdown-item:hover { background: #f5f5f5; }
  .site-header-wrap .user-avatar-dropdown-item.logout { color: #dc3545; }
}
