            .login-container {
                max-width: 400px;
                margin: 100px auto;
            }

            .user-info {
                font-size: 0.9rem;
                margin-bottom: 15px;
            }

            textarea {
                resize: none;
            }


            :root {
                --primary-color: #007aff;
                /* Màu xanh kiểu iOS */
                --bg-field: #f9f9fb;
                --border-color: #e0e0e0;
            }

            /* Bo khung tổng thể cho Desktop */
            .lesson-container {
                max-width: 100%;
                margin: 20px auto;
                padding: 0px;
                background: #fff;
            }

            /* Style chung cho Input và Textarea */
            .form-input {
                width: 100%;
                border: 1px solid var(--border-color);
                border-radius: 12px;
                /* Bo góc mềm mại kiểu App */
                padding: 12px 15px;
                background-color: var(--bg-field);
                transition: all 0.3s ease;
                outline: none;
                font-size: 16px;
                /* Tránh zoom trên iPhone */
            }

            .form-input:focus {
                border-color: var(--primary-color);
                background-color: #fff;
                box-shadow: 0 0 0 4px rgba(0, 122, 255, 0.1);
            }

            /* Khu vực Textarea đặc biệt */
            .textarea-wrapper {
                position: relative;
                border: 1px solid var(--border-color);
                border-radius: 12px;
                background-color: var(--bg-field);
                overflow: hidden;
            }

            .textarea-wrapper .form-input {
                border: none;
                background: transparent;
                border-radius: 0;
            }

            .textarea-footer {
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding: 8px 12px;
                border-top: 1px solid #eee;
                background: #fff;
            }

            .word-counter {
                color: #8e8e93;
                font-size: 0.85rem;
            }

            /* Nút bấm kiểu Mobile */
            .ocr-controls {
                display: flex;
                gap: 8px;
            }

            .btn-primary-sm,
            .btn-secondary-sm {
                padding: 6px 15px;
                border-radius: 20px;
                font-size: 13px;
                font-weight: 600;
                cursor: pointer;
                border: none;
                transition: opacity 0.2s;
            }

            .btn-primary-sm {
                background-color: var(--primary-color);
                color: white;
            }

            .btn-secondary-sm {
                background-color: #e9e9eb;
                color: #3a3a3c;
            }

            .btn-primary-sm:active,
            .btn-secondary-sm:active {
                opacity: 0.7;
            }

            /* Responsive cho Mobile */
            @media (max-width: 768px) {
                .lesson-container {
                    margin: 0;
                    padding: 0px;
                }

                .form-input {
                    font-size: 16px;
                    /* Ngăn chặn trình duyệt tự zoom vào input trên iOS */
                }
            }

            /* Tùy chỉnh Navbar cho giống App */
            .navbar {
                height: 60px;
                z-index: 1050;
            }

            .navbar-toggler:focus {
                box-shadow: none;
                /* Bỏ viền xanh khi nhấn vào nút 3 gạch */
            }

            /* Hiệu ứng Menu trượt */
            .offcanvas {
                border-top-right-radius: 20px;
                border-bottom-right-radius: 20px;
            }

            .list-group-item {
                transition: background 0.2s;
                font-size: 16px;
                font-weight: 500;
            }

            .list-group-item:active {
                background-color: #f0f0f0 !important;
            }

            /* Đảm bảo nội dung bên dưới không bị che */
            body.container {
                padding-top: 0 !important;
            }