        html,
        body {
            height: 100%;
            margin: 0;
            padding: 0;
            background: #333;
            color: #fff;
            font-family: 'Courier Prime', monospace;
            display: flex;
            flex-direction: column;
            .rpgui-content{
                overflow-y: auto !important;
            }
        }        
        .container-wrapper {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
        }

        .container {
            width: 1000px;
            margin: 20px;
        }

        .rpgui-content {
            overflow-x: hidden;
            padding: 20px;
        }

        .tabs {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            justify-content: center;
            margin: 20px 0;
        }

        .tab-container {
            width: 100%;
            height: auto;
            max-height: 800px;
            overflow-y: auto;
            max-width: 1000px;
        }

        .tab-content {
            display: none;
            animation: fadeIn 0.4s ease-in-out;
        }

        .tab-content.active {
            display: block;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        header {
            text-align: center;
        }

        footer {
            text-align: center;
            padding: 20px;
            width: 100%;
            max-width: 960px;
            margin: 20px auto 0 auto;
            position: static !important;
            z-index: auto !important;
            box-sizing: border-box;
        }

        .social-links {
            margin-top: 10px;
        }

        .social-links a {
            color: #DAA520;
            text-decoration: none;
            margin: 0 10px;
            font-size: 0.9em;
        }

        .rpgui-container.framed-golden.tab-container {
            width: 100%;
            max-width: 960px;
            margin: 0 auto;
            position: unset !important;
        }


        /* Responsive layout for Android & iOS */
        @media (max-width: 1024px) {
            .rpgui-container.framed-golden.tab-container {
                width: 95%;
                max-width: 95%;
                height: auto;
            }

            .container,
            footer {
                width: 95%;
                max-width: 95%;
                margin: 10px;
            }

            .tab-container {
                max-width: 100%;
                height: auto;
            }

            .tabs {
                flex-direction: column;
                align-items: center;
            }

            .social-links a {
                display: block;
                margin: 5px 0;
            }
            html, body, .rpgui-content {
                overflow-y: auto !important;
            }
           
        }

        @media (max-width: 480px) {
            .rpgui-container.framed-golden.tab-container {
                width: 100%;
                margin: 5px;
                max-height: none;
                height: auto;
                overflow-y: auto;
            }

            .container,
            footer {
                width: 100%;
                margin: 5px;
            }

            h1 {
                font-size: 16px;
            }

            .tabs button {
                font-size: 10px;
                padding: 4px 6px;
            }
            html, body, .rpgui-content {
                overflow-y: auto !important;
            }
            #education ul li{
                padding-left: 20px;
                width: 100%;
                box-sizing: border-box;
            }
            
            #education > ul > li,
            #education ul ul li {
                padding-left: 32px;
                margin-bottom: 12px;
                font-size: 0.95em;
                line-height: 1.4;
            }
        }

        .profile-wrapper {
            display: flex;
            gap: 20px;
            align-items: flex-start;
            flex-wrap: wrap;
        }

        .profile-image {
            flex: 0 0 150px;

            div {
                width: 150px;
                height: 150px;
                overflow: hidden;
                position: unset;
            }
        }

        .profile-image img {
            width: 150px;
            height: 150px;
            object-fit: cover;
            display: block;
        }

        .profile-text {
            flex: 1;
            min-width: 250px;
            line-height: 1.6;
            font-variant-caps: all-small-caps;
            font-size: large;

            p {
                line-height: 1.6;
                margin: 0;
            }
        }

        @media (max-width: 768px) {
            .profile-wrapper {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .profile-text {
                min-width: 100%;
            }

            .profile-image {
                margin-bottom: 15px;
            }

            .profile-image img {
                margin: 0 auto;
            }
            html, body, .rpgui-content {
                overflow-y: auto !important;
            }

        }

        .img-container {
            padding: 0px !important;
            border: 0px !important;
        }

        .icon-pixel {
            width: 16px;
            height: 16px;
            image-rendering: pixelated;
            vertical-align: middle;
            margin-right: 6px;
        }

        .social-links a {
            display: inline-flex;
            align-items: center;
            color: #a8ffda;
            text-shadow: 1px 1px #002a1d;
            margin: 0 10px;
            font-size: 0.9em;
            text-decoration: none;
        }

        .social-links a:hover {
            color: #ffffff;
        }

        /* Íconos para los ítems principales de educación */
        #education>ul>li {
            list-style: none;
            position: relative;
            padding-left: 28px;
            margin-bottom: 20px;
        }

        #education>ul>li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 2px;
            width: 20px;
            height: 20px;
            background-image: url('./assets/icons/diploma.png');
            /* Reemplazá con tu ícono de libro */
            background-size: contain;
            background-repeat: no-repeat;
            image-rendering: pixelated;
        }

        /* Íconos para los sub-ítems */
        #education ul ul li {
            list-style: none;
            position: relative;
            padding-left: 22px;
            margin-bottom: 6px;
            font-size: 0.95em;
            color: #cde;
            font-variant-caps: all-small-caps;
            font-size: medium;
        }

        #education ul ul li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 2px;
            width: 14px;
            height: 14px;
            background-image: url('./assets/icons/diploma3.png');
            /* Reemplazá con tu ícono de sub-item */
            background-size: contain;
            background-repeat: no-repeat;
            image-rendering: pixelated;
            font-variant-caps: all-small-caps;
        }

        /* Botón flotante oculto inicialmente */
        #show-more-btn {
            position: fixed;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            width: 32px;
            height: 32px;
            background-image: url('./assets/icons/show-more-icon.webp');
            /* reemplazalo por tu ícono pixel art */
            background-size: contain;
            background-repeat: no-repeat;
            background-color: transparent;
            border: none;
            cursor: pointer;
            z-index: 999;
            display: none;
            image-rendering: pixelated;
        }

        /* Contenido oculto por defecto */
        .extra-content {
            display: none;
            margin-top: 15px;
        }

        .experience-item {
            margin-bottom: 25px;
            padding: 15px;
            border-radius: 6px;
        }

        .experience-company {
            margin: 0;
            color: #b4950a;
            font-size: 1.4em;
            text-shadow: 1px 1px #001;
        }

        .experience-role {
            margin: 5px 0;
            font-size: 1em;
            font-style: italic;
            color: #ccc;
            display: flex;
            align-items: center;
            gap: 10px;
            margin: 10px 0;
        }

        .experience-summary {
            margin: 5px 0 0;
            font-size: 0.95em;
            line-height: 1.5;
            color: #eee;
            font-variant-caps: all-small-caps;
        }

        hr {
            margin: 20px 0;
            position: unset;
        }
        .nested {
            display: none;
            margin-top: 5px;
            padding-left: 20px;
        }
        
        .collapsible.open > .nested {
            display: block;
        }
        
        /* Opcional: cursor visual */
        .collapsible {
            cursor: pointer;
            position: relative;
        }
        
        .collapsible::before {
            content: "▶";
            position: absolute;
            left: -16px;
            color: #6ff;
            font-size: 0.8em;
        }
        
        .collapsible.open::before {
            content: "▼";
        }
        .profile-text p,
.experience-summary,
.profile-text,
.tab-content {
  user-select: text !important;
  -webkit-user-select: text !important;
  -moz-user-select: text !important;
  -ms-user-select: text !important;
  cursor: text;
}