
/* Estilos mejorados para el logo de Simphony (tamaño y responsividad) */
.ximphony-logo {
    /* Aplicar al contenedor (enlace) sin forzar su tamaño completo */
    display: inline-flex;
    align-items: center;
    gap: 8px;
    vertical-align: middle;
}

/* Dimensionar la imagen dentro del enlace en lugar del enlace mismo */
.ximphony-logo img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    display: block;
    border-radius: 6px;
}

@media (max-width: 480px) {
    .ximphony-logo img {
        width: 30px;
        height: 30px;
    }
}

/* Estilos para la opción de prueba y su descripción en el menú desplegable */
.test-dropdown .option {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 10px;
}

.test-dropdown .option .option-icon {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    border-radius: 4px;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.test-dropdown .option .option-label {
    font-weight: 600;
    font-size: 14px;
    color: #222;
}

.test-dropdown .option .option-description {
    display: block;
    font-size: 13px;
    color: #666;
    line-height: 1.35;
    margin-top: 2px;
    max-width: 360px;
    word-wrap: break-word;
    opacity: 0.95;
}

.test-dropdown .option:hover .option-description {
    color: #444;
}

/* Ajustes opcionales para que los textos no sobresalgan en pantallas pequeñas */
@media (max-width: 420px) {
    .test-dropdown .option .option-description {
        font-size: 12px;
        max-width: 220px;
    }
}