
        html, body {
            height: 100vh;
            margin: 0;
            padding: 0;
            overflow-y: auto;
            scrollbar-width: none;
            -ms-overflow-style: none;
            touch-action: pan-y;
            -webkit-user-scalable: no;
            -ms-user-scalable: no;
            user-scalable: no;
            overscroll-behavior-y: none;
            -webkit-text-size-adjust: none;
            -webkit-overflow-scrolling: touch;
        }
        body::-webkit-scrollbar {
            display: none;
        }
        body {
            background: #2c2c2c;
            display: flex;
            flex-direction: column;
            font-family: 'Poppins', sans-serif;
        }
        .osahan-profile {
            flex: 1 0 auto;
            padding-bottom: env(safe-area-inset-bottom);
        }
        .profile-details .user-info {
            padding: 20px;
            text-align: center;
        }
        .profile-details .btn-danger {
            background: #dc3545;
            border: none;
            padding: 10px 20px;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            transition: background 0.3s ease;
        }
        .profile-details .btn-danger:hover {
            background: #c82333;
        }
        .text-danger {
            color: #00c8ff !important;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        .text-danger:hover {
            color: #00c8ff !important;
            transform: scale(1.05);
        }
        .bg-dark {
            background: #2c2c2c !important;
        }
        .profile-details .user-info h5 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 5px;
            overflow-wrap: break-word;
            white-space: normal;
            max-height: 48px;
            line-height: 1.2;
            opacity: 0;
            transform: translateY(10px);
            transition: opacity 0.3s ease, transform 0.3s ease;
        }
        .profile-details .user-info h5.loaded {
            opacity: 1;
            transform: translateY(0);
        }
        .profile-details .user-info p {
            font-size: 0.9rem;
            color: #b0b0b0;
            margin-bottom: 0;
            opacity: 0;
            transform: translateY(10px);
            transition: opacity 0.3s ease, transform 0.3s ease;
            transition-delay: 0.1s;
        }
        .profile-details .user-info p.loaded {
            opacity: 1;
            transform: translateY(0);
        }
        .osahan-menu-fotter {
            padding: 10px !important;
            min-height: 70px;
            background: #1a1a1a;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
        }
        .footer-item {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 1px;
            border-radius: 10px;
            transition: background 0.3s ease, transform 0.2s ease;
        }
        .footer-item.selected {
            background: #00566d;
            transform: scale(1.05);
        }
        .footer-item a {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .footer-item:hover {
            background: rgba(255, 255, 255, 0.1);
        }
    