:root {
    --header-bg: #1E4C9A;
    --brand-text: #ffffff;
    --space-4: 16px;
    --h: 45px;
  }
  * { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; }
  body {
    font: 14px/1.2 system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, "Helvetica Neue", Arial, "Noto Sans";
    color: var(--brand-text);
    min-height: 100vh;
  }
  a { color: inherit; text-decoration: none; }

  .g-header {
    position: sticky; top: 0; z-index: 1000;
    background: var(--header-bg);
    border-bottom: 1px solid rgba(255,255,255,.08);
  }

  .g-header__content {
    height: var(--h);
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .g-header__brand { display: flex; flex-direction: column; align-items: flex-start; }
  .brand__link { display: flex; align-items: center; gap: 10px; }


  .brand__logo {
    display: flex;
    align-items: center;
    height: 32px;
    width: 212px;
  }
  .brand__logo svg {
    width: 100%;
    height: auto;
    display: block;
  }

  .brand__slash { opacity: .6; font-weight: 700; font-size: 18px; }
  .brand__section { font-weight: 700; font-size: 18px; }

  .brand__badge { display: flex; align-items: center; height: 28px; }
  .brand__badge svg { height: 100%; display: block; }

  .g-header__actions {
    height: var(--h);
    display: flex;
    align-items: center;
  }

  .login-profile__name {
    font-family: 'opensans', helvetica, arial, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1rem;
    letter-spacing: -.3px;
    max-width: 150px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    color: #fff;
    line-height: 2rem !important;
  }

  .dropdown {
    position: relative;
    display: inline-block;
    cursor: pointer;
  }

  .dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    background-color: #fff;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 4px;
    overflow: hidden;
  }

  .dropdown-content a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 14px;
    border-bottom: 1px solid #f0f0f0;
  }

  .dropdown-content a:hover {
    background-color: #f8f8f8;
  }

  .dropdown:hover .dropdown-content {
    display: block;
  }

  .dropbtn {
    background-color: transparent;
    color: white;
    font-size: 0.8rem;
    font-weight: 400;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    text-align: right;
  }

  .dropbtn::after {
    content: "▼";
    font-size: 0.7rem;
    margin-left: 4px;
  }

  .hidden{
      display: none;
  }

  @media (max-width: 960px) {
    :root { --h: 50px; }
    .g-header__content { padding: 0 var(--space-4); }
  }

  @media (max-width: 640px) {
    .brand__link { gap: 6px; }
    .brand__slash { display: none; }
    .brand__logo {
      width: 174px;
    }
  }