        .content-container {
            position: relative;
            border-radius: 8px;
            overflow-x: hidden;
            align-items: auto;
            text-align: center;
            height: 900px;
        }

        .sticky-wrapper {
            position: sticky;
            align-items: center;
            top: 10px;
            width: 100%;
            pointer-events: none;
            z-index: 8;
        }

        .vertical-toggle-btn {
            position: absolute;
            top: 50vh;
            right: 0;
            transform: translateY(-50%);
            width: fit-content;
            background-color: #007bff;
            color: white;
            border: none;
            padding: 15px 8px;
            cursor: pointer;
            border-top-left-radius: 6px;
            border-bottom-left-radius: 6px;
            display: flex;
            writing-mode: vertical-rl;
            align-items: center;
            justify-content: center;
            gap: 6px;
            transition: right 0.3s ease-in-out, background-color 0.3s ease-in-out;
            z-index: 10;
            pointer-events: auto;
        }

        .vertical-toggle-btn .arrow {
            display: inline-block;
            transition: transform 0.3s ease;
        }

        .vertical-toggle-btn:hover {
            right: -4px;
            background-color: #0056b3;
        }

        .side-panel {
            position: absolute;
            top: 0;
            right: -880px;
            width: 850px;
            height: 850px;
            opacity: 0;
            background-color: #ffffff;
            box-shadow: -4px 0 10px rgba(0, 0, 0, 0.1);
            transition: right 0.6s ease-in-out, opacity 0.6s ease-in-out;
            padding: 20px;
            box-sizing: border-box;
            z-index: 5;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            pointer-events: auto;
        }

        .side-panel.open {
            opacity: 1;
            right: 0;
        }

        .side-panel.open~.vertical-toggle-btn .arrow {
            transform: rotate(180deg);
        }