    body {
      font-family: "Plus Jakarta Sans", sans-serif;
      background-color: #fff;
    }

    .navbar-brand img {
      height: 40px;
    }

    .nav-link {
      color: #333 !important;
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .nav-link:hover {
      color: #00A9FF !important;
    }

    .btn-login {
      border: 1px solid #ccc;
      border-radius: 8px;
      height: 48px;
      width: 91px;
      font-weight: 500;
      transition: 0.2s ease;
    }

    .btn-login:hover {
      background-color: #00A9FF;
      color: #fff;
    }

    .btn-create {
      background-color: #00A9FF;
      color: #fff;
      border-radius: 8px;
      height: 48px;
      width: 155px;
      font-weight: 500;
      border: none;
      transition: 0.2s ease;
    }

    .btn-create:hover {
      background-color: #fff;
      color: #000;
      border: 1px solid #ccc;
    }

    .material-symbols-outlined {
      font-size: 18px;
    }

    .btn-favorites-link {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: #fff;
      border: 1px solid #ccc;
      color: #ff4757;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .btn-favorites-link:hover {
      background: #ff4757;
      color: #fff;
      border-color: #ff4757;
      transform: scale(1.05);
    }

    .btn-favorites-link i {
      font-size: 20px;
    }

    .favorites-badge {
      position: absolute;
      top: -5px;
      right: -5px;
      background: #00A9FF;
      color: #fff;
      border-radius: 50%;
      width: 20px;
      height: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      font-weight: 700;
      border: 2px solid #fff;
    }

    /* Language Switcher Styles */
    .language-switcher-dropdown {
      position: relative;
    }

    .btn-language-switcher {
      display: flex;
      align-items: center;
      gap: 8px;
      height: 48px;
      padding: 0 16px;
      background: #fff;
      border: 1px solid #ccc;
      border-radius: 8px;
      color: #333;
      font-weight: 500;
      font-size: 14px;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .btn-language-switcher:hover {
      background: #f8f9fa;
      border-color: #00A9FF;
      color: #00A9FF;
    }

    .btn-language-switcher i.bi-globe {
      font-size: 18px;
    }

    .btn-language-switcher i.bi-chevron-down {
      font-size: 12px;
      transition: transform 0.3s ease;
    }

    .btn-language-switcher:hover i.bi-chevron-down {
      transform: rotate(180deg);
    }

    .current-language {
      font-weight: 600;
      min-width: 24px;
    }

    .language-dropdown-menu {
      position: absolute;
      top: calc(100% + 8px);
      right: 0;
      min-width: 200px;
      background: #fff;
      border: 1px solid #e0e0e0;
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
      opacity: 0;
      visibility: hidden;
      transform: translateY(-10px);
      transition: all 0.3s ease;
      z-index: 1000;
      overflow: hidden;
    }

    .language-dropdown-menu.show {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .language-dropdown-item {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px 16px;
      cursor: pointer;
      transition: all 0.3s ease;
      position: relative;
    }

    .language-dropdown-item:hover {
      background: #f8f9fa;
    }

    .language-dropdown-item.active {
      background: #e8f4ff;
      color: #00A9FF;
      font-weight: 600;
    }

    .flag-icon {
      width: 24px;
      height: 16px;
      object-fit: cover;
      border-radius: 2px;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }

    .language-dropdown-item span {
      flex: 1;
      font-size: 14px;
    }

    .language-dropdown-item i.bi-check-lg {
      font-size: 16px;
      color: #00A9FF;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .language-dropdown-item.active i.bi-check-lg {
      opacity: 1;
    }

    /* Language Notification */
    .language-notification {
      position: fixed;
      top: 90px;
      right: 20px;
      background: #fff;
      padding: 16px 20px;
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
      display: flex;
      align-items: center;
      gap: 12px;
      z-index: 10000;
      border-left: 4px solid #00A9FF;
      opacity: 0;
      transform: translateX(400px);
      transition: all 0.3s ease;
    }

    .language-notification.show {
      opacity: 1;
      transform: translateX(0);
    }

    .language-notification i {
      color: #00A9FF;
      font-size: 20px;
    }

    .language-notification span {
      font-size: 14px;
      font-weight: 500;
      color: #333;
    }

    @media (max-width: 991px) {
      .navbar-nav {
        gap: 10px !important;
      }

      .btn-favorites-link {
        width: 44px;
        height: 44px;
      }

      .btn-language-switcher {
        height: 44px;
        padding: 0 12px;
        font-size: 13px;
      }

      .language-dropdown-menu {
        right: auto;
        left: 0;
      }

      .language-notification {
        left: 20px;
        right: 20px;
        width: calc(100% - 40px);
      }
    }