.navbar-german {
            background-color: #000000 !important;
            border: none;
            border-bottom: 1px solid #1f2937;
            border-radius: 0;
            margin-bottom: 0;
            font-family: sans-serif;
            direction: rtl;
        }
        .navbar-german .navbar-brand {
            color: #ffffff !important;
            font-weight: 800;
            font-size: 20px;
            height: 60px;
            line-height: 30px;
            letter-spacing: 0.5px;
        }
        .navbar-german .nav-link-home {
            color: #ffffff !important;
            background-color: #111827 !important;
            font-weight: 600;
            height: 60px;
            line-height: 30px;
            padding-left: 20px;
            padding-right: 20px;
        }
        .navbar-german .nav-link-chat {
            color: #ffffff !important;
            background-color: #2563eb !important;
            font-weight: 600;
            height: 40px;
            line-height: 40px;
            padding: 0 20px !important;
            margin-top: 10px;
            border-radius: 6px;
            transition: background-color 0.2s;
        }
        .navbar-german .nav-link-chat:hover {
            background-color: #1d4ed8 !important;
        }
        .links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 12px;
            padding: 15px 0;
        }
        .site-link {
            display: flex;
            align-items: center;
            gap: 8px;
            background: #ffffff;
            border: 1px solid #e5e7eb;
            padding: 10px 12px;
            border-radius: 8px;
            text-decoration: none !important;
            color: #374151 !important;
            font-weight: 500;
            font-size: 14px;
            transition: all 0.2s ease-in-out;
            box-shadow: 0 1px 2px rgba(0,0,0,0.05);
        }
        .site-link:hover {
            background: #f9fafb;
            border-color: #d1d5db;
            transform: translateY(-1px);
        }
        .site-link img {
            width: 18px;
            height: 18px;
            flex-shrink: 0;
        }
        .users-card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
            gap: 15px;
            padding: 15px 0;
        }
        .user-profile-card {
            background: #ffffff;
            border: 1px solid #e5e7eb;
            border-radius: 12px;
            padding: 15px 10px;
            text-center;
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
        }
        .card-avatar {
            width: 55px;
            height: 55px;
            border-radius: 50%;
            margin-0 auto 10px auto;
            display: block;
            object-fit: cover;
            border: 2px solid #f3f4f6;
        }
        .card-username {
            font-weight: 700;
            color: #1f2937;
            font-size: 14px;
            margin-bottom: 8px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .card-stats .badge {
            background-color: #fee2e2 !important;
            color: #dc2626 !important;
            font-size: 11px;
            font-weight: 600;
            padding: 4px 8px;
            border-radius: 6px;
            display: inline-block;
            margin-bottom: 4px;
        }
        .card-stats .label-info {
            background-color: #e0f2fe !important;
            color: #0369a1 !important;
            font-size: 11px;
            font-weight: 600;
            padding: 4px 8px;
            border-radius: 6px;
            display: inline-block;
        }
        @media (max-width: 767px) {
            .links-grid {
                grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
                gap: 8px;
            }
            .users-card-grid {
                grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
                gap: 10px;
            }
            .navbar-header {
                float: none !important;
                display: flex;
                justify-content: space-between;
                align-items: center;
                width: 100%;
            }
            .navbar-toggle {
                float: none !important;
                margin: 0;
            }
            .navbar-german .nav-link-chat {
                margin-top: 5px;
                margin-bottom: 15px;
                display: inline-block;
            }
        }
        .footer-custom-heading {
            color: #ffffff !important;
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 20px;
            border-bottom: 2px solid #3b82f6;
            display: inline-block;
            padding-bottom: 5px;
        }
        .footer-nav-link {
            color: #9ca3af;
            text-decoration: none;
            transition: color 0.2s;
        }
        .footer-nav-link:hover {
            color: #ffffff;
        }