    :root {
      --brand-yellow: #f1ff5c;
      --text-black: #000000;
      --text-gray: #656564;
    }
    * { box-sizing: border-box; }
    body {
      margin: 0;
      padding: 0;
      font-family: "Sora", sans-serif;
      background-color: #fefefb;
      display: flex;
      flex-direction: column;
      min-height: 100vh;
    }
    .navbar {
      height: 64px;
      padding: 0 24px;
      background: var(--brand-yellow);
      border-bottom: 1.32px solid rgba(0, 0, 0, 0.12);
      box-shadow: 0px 17px 36px rgba(0, 0, 0, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .inner-navbar {
      max-width: 1443px;
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .logo { width: 153px; }
    .title { font-weight: bold; font-size: 16px; }
    .nav-left-group {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .logout-button {
  background-color: #dc3545;
  border: none;
  color: white;
  padding: 0.5rem 1.25rem;
  font-weight: 600;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.logout-button:hover {
  background-color: #c82333;
}