#left_panels_container {
    position: fixed;
    top: 10px;
    left: 0;
    right: auto;
    width: 40vw;
    max-width: 40vw;
    min-width: 320px;
    /* Increased width to ensure it reaches the globe for masking */
    height: calc(100vh - 10px);
    padding-top: 10px;
    /* Increased to perfectly clear the institutional logo */
    padding-bottom: 0;
    box-sizing: border-box;
    gap: 2px;
    /* Minimal gap to maximize height usage */
    z-index: 10;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
    /* Máscara curva para el globo - Reducida para dar más espacio lateral */
    --globe-mask-radius: 320px;
    --mask-center-x: 50vw;
    --mask-center-y: 50%;
    /* New dynamic variable */
    -webkit-mask-image: radial-gradient(circle at var(--mask-center-x) var(--mask-center-y), transparent var(--globe-mask-radius), black calc(var(--globe-mask-radius) + 2px));
    mask-image: radial-gradient(circle at var(--mask-center-x) var(--mask-center-y), transparent var(--globe-mask-radius), black calc(var(--globe-mask-radius) + 2px));
    pointer-events: none;
}

/* PANEL INDIVIDUAL IZQUIERDO - Responsivo 1/8 con curva del globo */
.left-panel {
    background: linear-gradient(135deg,
            rgba(15, 32, 39, 0.85),
            rgba(32, 58, 67, 0.85),
            rgba(44, 83, 100, 0.85));

    border-radius: 10px;


    width: 100%;
    min-width: 0;
    max-width: 100%;
    /* Fill container width */

    /* Flex sizing to prevent cutoff and ensure adaptation */
    height: auto;
    min-height: 0;
    flex-basis: 0;
    flex-grow: 1;

    font-family: 'Arial', sans-serif;
    color: white;
    display: flex;
    flex-direction: row;
    position: relative;
    justify-content: flex-start;
    align-items: center;
    box-sizing: border-box;
    padding: 0.5vh 0.4vw;
    padding-right: 18vw !important;
    /* Creates a safe zone that follows the globe's curvature */

    /* Perfect Containment Technique: Force content to the left half */
    justify-content: flex-start;

    /* Curved visual edge to flow with the globe */
    border-right: 2px solid rgba(112, 218, 210, 0.4);
    border-top-right-radius: 500px 100%;
    border-bottom-right-radius: 500px 100%;

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4),
        inset 0 0 15px rgba(112, 218, 210, 0.1),
        4px 0 10px rgba(112, 218, 210, 0.15);

    backdrop-filter: blur(4px);
    overflow: visible;
    /* Allow text to breathe */
    transition: transform 0.2s ease-out, background 0.3s;
    pointer-events: none;
}



/* BOTÓN INFO: arriba a la izquierda del panel */
.info-button {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: transparent;
    color: #FFC000;
    border: 1px solid #FFC000;
    text-align: center;
    line-height: 12px;
    cursor: pointer;
    font-size: 9px;
    font-weight: bold;
    z-index: 10;
    pointer-events: auto;
}



/* COLUMNA IZQUIERDA: título + imagen - VISIBLE */
.panel-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 65px;
    min-width: 60px;
    flex-shrink: 0;
    gap: 0.3vh;
    margin-left: 0.4vw;
}

.panel-left img {
    max-width: 60px;
    max-height: 50px;
    height: auto;
    border-radius: 6px;
    object-fit: contain;
}

.panel-left .panel-title {
    font-size: clamp(0.55rem, 0.75vh, 0.85rem);
    /* Slightly smaller for refinement */
    font-weight: bold;
    color: #70dad2;
    /* Reverted to original teal color */
    text-align: center;
    margin: 0;
    line-height: 1.0;
    white-space: nowrap;
    /* Force single line as requested */
    overflow: hidden;
    text-overflow: ellipsis;
}

.panel-right {
    flex: 1;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 0.5vw;
    /* Maintain density */
    margin-left: 0.3vw;
    min-width: 0;
    align-items: center;
}

/* SUBCOLUMNAS PARA POINTS - VISIBLE */
.points-column {
    display: flex;
    flex-direction: column;
    gap: 0.1vh;
    flex: 0 0 auto;
    /* Prevent columns from narrowing or overlapping */
    padding: 0 0.2vw;
    /* Minimal padding for tight look */
    justify-content: center;
}

/* ITEM INDIVIDUAL - VISIBLE */
.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    /* Allow sharing row space */
    min-width: 0;
    box-sizing: border-box;
    padding: 0;
    line-height: 1.1;
}

/* NÚMERO Y UNIDAD - VISIBLE */
.tech-item-number {
    display: block;
    font-size: 1.4rem !important;
    /* Reduced from 7rem to fit the narrower panel */
    font-weight: bold;
    color: white;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
    text-align: center;
    line-height: 1.0;
    margin: 0;
    white-space: nowrap;
    /* Force single line */
}

.tech-unit {
    font-size: 1.4rem !important;
    margin-left: 2px;
    vertical-align: baseline;
}

/* TEXTO DE DESCRIPCIÓN - VISIBLE */
.tech-item-desc {
    display: block;
    font-size: 0.85rem !important;
    /* Reduced from 4rem to fit the narrower panel */
    color: white;
    opacity: 0.85;
    margin-top: 1px;
    text-align: center;
    max-width: 100%;
    white-space: normal !important;
    /* Allow wrapping */
    overflow: visible;
    line-height: 1.1;
}


/* Imagen de robots refinada */
.panel-left img[src*="robots.png"] {
    max-width: 60px;
    height: auto;
}

/* Imagen de drones refinada */
.panel-left img[src*="drones.png"] {
    max-width: 60px;
    height: auto;
}