    #mrl-whatsapp-container {
        font-family: 'Segoe UI', Arial, sans-serif;
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 10000;
    }

    /* Ventana Principal */
    #mrl-chat-window {
        width: 320px;
        background: white;
        border-radius: 18px;
        box-shadow: 0 8px 30px rgba(0,0,0,0.3);
        margin-bottom: 12px;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .mrl-chat-hidden {
        display: none !important;
    }

    /* Encabezado */
    .mrl-header {
        background: #000;
        color: white;
        padding: 15px;
        display: flex;
        justify-content: space-between;
        align-items: flex-start; /* Para que la X suba */
        position: relative;
    }

    .mrl-brand {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .mrl-brand img {
        width: 40px;
        height: 40px;
        border-radius: 6px;
        object-fit: cover;
    }

    .mrl-brand-text {
        display: flex;
        flex-direction: column;
    }

    .mrl-title {
        font-weight: bold;
        font-size: 17px;
        line-height: 1.2;
    }

    .mrl-subtitle {
        font-size: 12px;
        color: #999;
    }

    /* Botón X en la esquina */
    #mrl-close-btn {
        background: none;
        border: none;
        color: white;
        font-size: 22px;
        cursor: pointer;
        padding: 0;
        line-height: 1;
        margin-top: -5px;
        margin-right: -55px;
    }

    /* Cuerpo con el patrón de WhatsApp */
    .mrl-body {
        padding: 25px 20px;
        background-color: #e5ddd5;
        background-image: url('https://user-images.githubusercontent.com/15075759/28719144-86dc0f70-73b1-11e7-911d-60d70fcded21.png');
        background-blend-mode: overlay;
        background-size: 250px;
    }

    .mrl-bubble {
        background: white;
        padding: 15px;
        border-radius: 0 15px 15px 15px;
        box-shadow: 0 1px 2px rgba(0,0,0,0.1);
        max-width: 85%;
    }

    .mrl-name {
        font-size: 13px;
        font-weight: bold;
        color: #555;
        margin: 0 0 5px 0;
    }

    .mrl-bubble p {
        margin: 0;
        font-size: 15px;
        color: #333;
        line-height: 1.4;
    }

    /* Botón Iniciar Chat (Negro redondeado) */
    .mrl-footer {
        padding: 15px 20px 20px;
        background: white;
    }

    .mrl-btn-connect {
        background: #1a1a1a;
        color: white;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        padding: 14px;
        border-radius: 40px; /* Muy redondeado como la imagen */
        font-weight: bold;
        font-size: 16px;
        transition: transform 0.2s;
    }

    .mrl-btn-connect:active {
        transform: scale(0.98);
    }

    /* Botón Flotante Verde */
    #mrl-launcher {
        background: #25D366;
        color: white;
        padding: 12px 22px;
        border-radius: 30px;
        display: flex;
        align-items: center;
        gap: 10px;
        cursor: pointer;
        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        float: right;
    }

    #mrl-launcher img {
        width: 24px;
        height: 24px;
    }

    #mrl-launcher span {
        font-weight: bold;
        font-size: 16px;
    }
    

/*YOUTUBE LIVE*/
    :root {
        --bg-panel: #0b0e11;
        --bg-card: #151921;
        --accent-orange: linear-gradient(180deg, #f05a28 0%, #3b2a5a 100%);
        --text-main: #ffffff;
        --text-dim: #9aa0a6;
        --border-color: #2a2e35;
        --panel-width: 420px; /* Panel más ancho */
    }

    #side-panel-wrapper {
        position: fixed;
        left: 0;
        top: 12%;
        height: 600px;
        width: var(--panel-width);
        z-index: 10000;
        display: flex;
        transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        font-family: 'Segoe UI', Roboto, sans-serif;
    }

    /* Estado cuando está CERRADO */
    .panel-hidden {
        transform: translateX(calc(var(--panel-width) * -1));
    }

    /* Pestaña Naranja (Trigger) */
    .panel-trigger {
        position: absolute;
        right: -55px; 
        top: 40px;
        width: 55px;
        height: 220px;
        background: var(--accent-orange);
        border-radius: 0 15px 15px 0;
        cursor: pointer;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-around;
        padding: 18px 0;
        box-shadow: 5px 0 15px rgba(0,0,0,0.4);
    }

    /* Estilo del texto vertical */
    .trigger-text {
        writing-mode: vertical-rl;
        transform: rotate(180deg);
        color: white;
        font-weight: 900;
        letter-spacing: 3px;
        font-size: 16px;
        text-transform: uppercase;
    }

    .trigger-status {
        background: #000;
        color: white;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 13px;
        font-weight: bold;
        border: 1px solid rgba(255,255,255,0.2);
    }

    /* Cuerpo del Panel */
    .panel-body-h {
        width: 100%;
        background: var(--bg-panel);
        border-right: 1px solid var(--border-color);
        display: flex;
        flex-direction: column;
        box-shadow: 10px 0 30px rgba(0,0,0,0.8);
    }

    .panel-header {
        padding: 25px 0px 25px 25px;
        display: flex;
        align-items: center;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .live-badge {
        background: #41221c;
        color: #ff6a00;
        padding: 4px 12px;
        border-radius: 6px;
        font-size: 12px;
        font-weight: bold;
    }

    .panel-header h2 {
        color: white;
        font-size: 20px;
        margin: 0 0 0 15px;
        flex-grow: 1;
    }

    .close-btn {
        background: none;
        border: none;
        color: #555;
        font-size: 28px;
        cursor: pointer;
        transition: 0.2s;
    }
    .close-btn:hover { color: white; }

    /* Lista de Videos */
    .video-list {
        padding: 20px;
        overflow-y: auto;
    }

    .list-title {
        color: var(--text-dim);
        font-size: 13px;
        font-weight: bold;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .video-item {
        background: var(--bg-card);
        border: 1px solid #2a1f1d;
        border-radius: 12px;
        padding: 12px;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        text-decoration: none;
        transition: transform 0.2s, border-color 0.2s;
    }

    .video-item:hover {
        border-color: #f05a28;
        transform: scale(1.02);
    }

    .video-thumb {
        position: relative;
        width: 110px; /* Más ancho */
        height: 65px;
        border-radius: 8px;
        overflow: hidden;
        margin-right: 15px;
        background: #000;
    }

    .video-thumb img { width: 100%; height: 100%; object-fit: cover; opacity: 0.8; }

    .play-btn {
        position: absolute;
        top: 50%; left: 50%;
        transform: translate(-50%, -50%);
        color: white;
        font-size: 16px;
    }

    .video-info h3 {
        color: white;
        font-size: 15px;
        margin: 0;
        font-weight: 500;
        padding: 12px 0px;
    }

    .video-info span {
        color: #ff4444;
        font-size: 12px;
        display: block;
        margin-top: 5px;
        font-weight: bold;
    }

    .pop-out {
        margin-left: auto;
        color: #444;
    }

    /* Scrollbar */
    .video-list::-webkit-scrollbar { width: 6px; }
    .video-list::-webkit-scrollbar-thumb { background: #222; border-radius: 10px; }