    /* Modern Compact Header */
    .header-rr {
      padding: 8px 0 !important;
      background: linear-gradient(135deg, #0ea2bd 0%, #0e57bd 100%) !important;
      border-bottom: none !important;
      box-shadow: 0 2px 12px rgba(14, 162, 189, 0.3) !important;
      min-height: 56px !important;
      height: 56px !important;
    }

    /* Modern Title Styling */
    .header-rr h2 {
      color: white !important;
      margin-bottom: 0px !important;
      font-size: 18px !important;
      font-weight: 600 !important;
      text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) !important;
      letter-spacing: 0.3px !important;
    }

    .header-rr a {
      color: white !important;
    }

    /* Compact Navigation Icons */
    .icon-navigation-rr {
      padding: 0 !important;
      min-width: 40px !important;
      height: 40px !important;
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
      border-radius: 8px !important;
      transition: all 0.3s ease !important;
      text-decoration: none !important;
    }

    .icon-navigation-rr:hover {
      background: rgba(255, 255, 255, 0.1) !important;
    }

    .icon-navigation-rr i {
      font-size: 20px !important;
    }

    /* Language Selector */
    .language-selector {
      display: flex !important;
      align-items: center !important;
      padding: 6px 12px !important;
      border-radius: 8px !important;
      background: rgba(255, 255, 255, 0.1) !important;
      backdrop-filter: blur(10px) !important;
      transition: all 0.3s ease !important;
      cursor: pointer !important;
      height: 40px !important;
      min-width: 48px !important;
      text-decoration: none !important;
      color: white !important;
    }

    .language-selector:hover {
      background: rgba(255, 255, 255, 0.2) !important;
      color: white !important;
    }

    .language-selector i {
      font-size: 16px !important;
    }

    /* Menu Button */
    .menu-button {
      padding: 6px 12px !important;
      border-radius: 8px !important;
      background: rgba(255, 255, 255, 0.1) !important;
      backdrop-filter: blur(10px) !important;
      transition: all 0.3s ease !important;
      border: none !important;
      min-width: 48px !important;
      height: 40px !important;
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
      color: white !important;
    }

    .menu-button:hover {
      background: rgba(255, 255, 255, 0.2) !important;
      transform: scale(1.05) !important;
    }

    .menu-button i {
      font-size: 20px !important;
    }

    /* Dropdown Menu Styling */
    .dropdown-menu {
      background-color: white !important;
      border: none !important;
      border-radius: 8px !important;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
      padding: 8px 0 !important;
      margin-top: 8px !important;
    }

    .dropdown-item {
      padding: 8px 16px !important;
      color: #333 !important;
      transition: all 0.2s ease !important;
    }

    .dropdown-item:hover {
      background-color: rgba(14, 162, 189, 0.1) !important;
      color: #0ea2bd !important;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .header-rr {
        padding: 6px 0 !important;
        min-height: 48px !important;
        height: 48px !important;
      }

      .header-rr h2 {
        font-size: 16px !important;
      }

      .icon-navigation-rr {
        min-width: 36px !important;
        height: 36px !important;
      }

      .icon-navigation-rr i {
        font-size: 18px !important;
      }

      .language-selector {
        padding: 4px 8px !important;
        min-width: 36px !important;
        height: 36px !important;
      }

      .menu-button {
        min-width: 36px !important;
        height: 36px !important;
      }
    }

    /* Modern Page Header Styles */
    .app-header-static {
      background: #ffffff;
      border-bottom: 1px solid #f0f0f0;
      padding: 24px 0;
      margin: 16px 0;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    }

    .header-container-static {
      max-width: 100%;
      margin: 0 auto;
      padding: 0 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }

    .title-section-static {
      flex: 1;
      min-width: 0;
    }

    .app-title-static {
      font-size: 28px;
      font-weight: 600;
      color: #1a1a1a;
      margin: 0;
      line-height: 1.2;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .app-subtitle-static {
      font-size: 15px;
      color: #666666;
      margin: 8px 0 0 0;
      font-weight: 400;
      line-height: 1.4;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    /* Mobile Responsiveness for Page Header */
    @media (max-width: 767px) {
      .header-container-static {
        padding: 0 16px;
      }

      .app-title-static {
        font-size: 20px;
      }

      .app-subtitle-static {
        font-size: 13px;
      }

      .app-header-static {
        padding: 16px 0;
        margin: 12px 0;
      }
    }

    @media (max-width: 480px) {
      .header-container-static {
        padding: 0 12px;
        gap: 8px;
      }

      .app-title-static {
        font-size: 18px;
      }

      .app-subtitle-static {
        font-size: 12px;
      }

      .app-header-static {
        padding: 12px 0;
        margin: 0;
      }
    }
